Changes between Version 37 and Version 38 of Python3
- Timestamp:
- 2020-10-15T13:31:43Z (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Python3
v37 v38 88 88 2. Then, port the corresponding module. 89 89 90 When 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 90 92 === Porting a specific Python file === 91 93