Changes between Version 13 and Version 14 of DeveloperGuidelines/Py_2_3
- Timestamp:
- 06/26/19 19:23:19 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TabularUnified DeveloperGuidelines/Py_2_3
v13 v14 93 93 ||INTEGER_TYPES||{{{from s3compat import INTEGER_TYPES}}}||maps to tuple of all known integer types: (int,long) in Py2, (int,) in Py3), for use with {{{isinstance}}}|| 94 94 95 === No dict.iteritems ===95 === No dict.iteritems, iterkeys or itervalues === 96 96 97 Python-3 does no t support{{{dict.iteritems()}}}. We use {{{dict.items()}}} instead:97 Python-3 does no longer have {{{dict.iteritems()}}}. We use {{{dict.items()}}} instead: 98 98 99 99 {{{#!python … … 105 105 106 106 NB In Python-2, {{{dict.items()}}} returns a list of tuples, but in Python-3 it returns a dict view object that is sensitive to changes of the dict. If a list is required, or the dict is changed inside the loop, the result of {{{dict.items()}}} must be converted into a list explicitly. 107 108 The same applies to {{{dict.iterkeys()}}} (use {{{dict.keys()}}} instead) and {{{dict.itervalues()}}} (use {{{dict.values()}}} instead). 109