Changes between Version 62 and Version 63 of DeveloperGuidelines/Py_2_3
- Timestamp:
- 07/07/19 10:14:06 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelines/Py_2_3
v62 v63 248 248 x = s3_str(x) 249 249 }}} 250 251 === next(i) not i.next() === 252 253 In Python-3 the {{{i.next}}} method of iterators has been renamed into {{{i.__next__}}}, and should not be called explicitly but via the built-in {{{next(i)}}} function. 254 255 This function is also available in Python-2.7 (where it calls i.next() instead), so we generally use the next function: 256 257 {{{#!python 258 i = iter(l) 259 # Deprecated: 260 item = i.next() 261 # Forward+backward-compatible way to do it: 262 item = next(i) 263 }}}