File tree Expand file tree Collapse file tree 2 files changed +10
-6
lines changed Expand file tree Collapse file tree 2 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 19
19
:alt: PyPI
20
20
:target: https://pypi.org/project/modernize/
21
21
22
+ Modernize is a Python program that reads Python 2 source code
23
+ and applies a series of fixers to transform it into source code
24
+ that is valid on both Python 3 and Python 2.7.
25
+
22
26
This library is a very thin wrapper around `fissix
23
- <https://github.com/jreese/fissix> `_, a fork of lib2to3, to utilize it
24
- to make Python 2 code more modern with the intention of eventually
25
- porting it over to Python 3.
27
+ <https://github.com/jreese/fissix> `_, a fork of lib2to3.
26
28
27
29
The ``python -m modernize `` command works like
28
30
``python -m fissix ``, see `fissix <https://github.com/jreese/fissix >`_.
Original file line number Diff line number Diff line change @@ -13,10 +13,12 @@ Purpose of the project
13
13
======================
14
14
15
15
.. TODO Explain WHY someone would want to have their code be Python 2/3 compatible
16
+ Modernize is a Python program that reads Python 2 source code
17
+ and applies a series of fixers to transform it into source code
18
+ that is valid on both Python 3 and Python 2.7.
19
+
16
20
This library is a very thin wrapper around `fissix
17
- <https://github.com/jreese/fissix> `_, a fork of lib2to3, to utilize it
18
- to make Python 2 code more modern with the intention of eventually
19
- porting it over to Python 3.
21
+ <https://github.com/jreese/fissix> `_, a fork of lib2to3.
20
22
21
23
The ``python -m modernize `` command works like
22
24
``python -m fissix ``, see `fissix <https://github.com/jreese/fissix >`_.
You can’t perform that action at this time.
0 commit comments