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. _______________________________________________ pypy-issue mailing list pypy-issue@python.org https://mail.python.org/mailman/listinfo/pypy-issue