New issue 2643: itertools.islice of sequenceiterator gives wrong answer https://bitbucket.org/pypy/pypy/issues/2643/itertoolsislice-of-sequenceiterator-gives
Evan Hubinger: The code import itertools tuple(itertools.islice(iter((0, 1, 2, 3, 4)), None, None, 2)) gives (1, 3) when it should give (0, 2, 4) on PyPy3. _______________________________________________ pypy-issue mailing list [email protected] https://mail.python.org/mailman/listinfo/pypy-issue
