[pypy-issue] Issue #2222: Slicing memoryview fails - RuntimeError: maximum recursion depth exceeded (pypy/pypy)

uncaffeinated issues-reply at bitbucket.org
Sat Jan 2 21:23:25 EST 2016


New issue 2222: Slicing memoryview fails - RuntimeError: maximum recursion depth exceeded
https://bitbucket.org/pypy/pypy/issues/2222/slicing-memoryview-fails-runtimeerror

uncaffeinated:

Repeatedly slicing memoryviews causes Pypy to incorrectly throw a runtime error. For example, the following program

b = memoryview('x' * 100000)
while b:
    b = b[1:]

produces "RuntimeError: maximum recursion depth exceeded" even though there is no recursion.




More information about the pypy-issue mailing list