[issue12616] zip fixer fails on zip()[:-1]

2019-03-17 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: This seems to have been fixed with issue28837 and 93b4b47e3a720171d67f3b608de406aef462835c. Marking this as resolved. Thanks for the report. ➜ cpython git:(master) ✗ cat /tmp/foo.py zip(B, D)[:-1] ➜ cpython git:(master) ✗ 2to3-3.7 /tmp/foo.py

[issue12616] zip fixer fails on zip()[:-1]

2019-03-15 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue12616] zip fixer fails on zip()[:-1]

2014-06-24 Thread Mark Lawrence
Mark Lawrence added the comment: @Benjamin can you take this on please? -- nosy: +BreamoreBoy type: - behavior versions: +Python 3.4, Python 3.5 -Python 3.2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12616

[issue12616] zip fixer fails on zip()[:-1]

2011-07-25 Thread Aaron Meurer
Changes by Aaron Meurer asmeu...@gmail.com: -- nosy: +Aaron.Meurer ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12616 ___ ___ Python-bugs-list

[issue12616] zip fixer fails on zip()[:-1]

2011-07-22 Thread Vlada Peric
New submission from Vlada Peric vlada.pe...@gmail.com: The zip fixer fails on this code: zip(B, D)[:-1] I fixed this by wrapping explicitly with list(), but that creates a duplicate list on Python 2. (Like the other fixes I reported, I assume this also applies to 3.3, but I didn't test it