Changes between Version 4 and Version 5 of Python3


Ignore:
Timestamp:
2020-07-08T15:45:30Z (4 years ago)
Author:
itamarst
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Python3

    v4 v5  
    3838**Second**, run `futurize --write --both-stages --all-imports path/to/file.py`.
    3939
    40 **Third**, replace the `from builtins import *` variant, if any, with:
     40**Third**, fix the imports (TODO this can probably be automated).
     41
     42Delete this bit:
     43
     44{{{
     45#!python
     46from future import standard_library
     47standard_library.install_aliases()
     48}}}
     49
     50And replace the `from builtins import *` variant, if any, with:
    4151
    4252{{{