Changes between Version 69 and Version 70 of DeveloperGuidelines/Py_2_3


Ignore:
Timestamp:
07/09/19 11:36:30 (5 years ago)
Author:
Dominic König
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DeveloperGuidelines/Py_2_3

    v69 v70  
    251251}}}
    252252
     253=== Don't str.decode either ===
     254
     255Similar, the {{{str}}} type has no {{{decode}}} method in Python3.
     256
     257To convert a utf-8 encoded {{{str}}} to {{{unicode}}} in Py2, use {{{s3_unicode}}}.
    253258=== next(i) not i.next() ===
    254259