Changes between Version 37 and Version 38 of Python3


Ignore:
Timestamp:
2020-10-15T13:31:43Z (4 years ago)
Author:
itamarst
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Python3

    v37 v38  
    88882. Then, port the corresponding module.
    8989
     90When doing the incidental fixes to other modules, try to change as little as possible: no `__future__` imports, no `from future.builtins import all thte things`, just enough changes to make the tests you care enough pass. This reduces chances of unintentional breakage and unintentional scope creep. You might even do temporary things like `from past.builtins import unicode`. Later on when specifically porting a you can Do All The Things the right way.
     91
    9092=== Porting a specific Python file ===
    9193