Changes between Version 4 and Version 5 of Python3
- Timestamp:
- 2020-07-08T15:45:30Z (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Python3
v4 v5 38 38 **Second**, run `futurize --write --both-stages --all-imports path/to/file.py`. 39 39 40 **Third**, replace the `from builtins import *` variant, if any, with: 40 **Third**, fix the imports (TODO this can probably be automated). 41 42 Delete this bit: 43 44 {{{ 45 #!python 46 from future import standard_library 47 standard_library.install_aliases() 48 }}} 49 50 And replace the `from builtins import *` variant, if any, with: 41 51 42 52 {{{