Changes between Version 69 and Version 70 of DeveloperGuidelines/Py_2_3
- Timestamp:
- 07/09/19 11:36:30 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelines/Py_2_3
v69 v70 251 251 }}} 252 252 253 === Don't str.decode either === 254 255 Similar, the {{{str}}} type has no {{{decode}}} method in Python3. 256 257 To convert a utf-8 encoded {{{str}}} to {{{unicode}}} in Py2, use {{{s3_unicode}}}. 253 258 === next(i) not i.next() === 254 259