New issue 1841: Signal check only in JUMP_ABSOLUTE when jitted
https://bitbucket.org/pypy/pypy/issue/1841/signal-check-only-in-jump_absolute-when

Maciej Fijalkowski:

Here is an example that's not interruptable:

def f(n):
    if n:
        f(n - 1)
        f(n - 1)

f(15)
print "x"
f(50)

The problem is that when jitted we only put signal check in JUMP_ABSOLUTE 
bytecode which does not exist in recursion.


_______________________________________________
pypy-issue mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-issue

Reply via email to