Changes between Initial Version and Version 1 of Ticket #18802
- Timestamp:
- Jun 28, 2015, 4:12:53 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #18802 – Description
initial v1 6 6 But since Python 2.6 there is the //builtin function// {{{next()}}} which is compatible between Py2 and Py3: in Py2 it calls the iterator method {{{{next()}}} while in Py3 it calls the special method {{{__next__()}}}. 7 7 Ticket #16075 addresses the (stage 1) conversion from {{{it.next()}}} to {{{next(it)}}}. 8 9 his ticket is tracked as a dependency of meta-ticket #16052.