File tree Expand file tree Collapse file tree 2 files changed +14
-5
lines changed Expand file tree Collapse file tree 2 files changed +14
-5
lines changed Original file line number Diff line number Diff line change @@ -23,8 +23,10 @@ Modernize is a Python program that reads Python 2 source code
23
23
and applies a series of fixers to transform it into source code
24
24
that is valid on both Python 3 and Python 2.7.
25
25
26
- This library is a very thin wrapper around `fissix
27
- <https://github.com/jreese/fissix> `_, a fork of lib2to3.
26
+ This allows you to run your test suite on Python 2.7 and Python 3
27
+ so you can gradually port your code to being fully Python 3
28
+ compatible without slowing down development of your Python 2
29
+ project.
28
30
29
31
The ``python -m modernize `` command works like
30
32
``python -m fissix ``, see `fissix <https://github.com/jreese/fissix >`_.
@@ -45,3 +47,6 @@ Python 2.5 or lower.
45
47
46
48
See the ``LICENSE `` file for the license of ``modernize ``.
47
49
Using this tool does not affect licensing of the modernized code.
50
+
51
+ This library is a very thin wrapper around `fissix
52
+ <https://github.com/jreese/fissix> `_, a fork of lib2to3.
Original file line number Diff line number Diff line change @@ -12,13 +12,14 @@ Modernize
12
12
Purpose of the project
13
13
======================
14
14
15
- .. TODO Explain WHY someone would want to have their code be Python 2/3 compatible
16
15
Modernize is a Python program that reads Python 2 source code
17
16
and applies a series of fixers to transform it into source code
18
17
that is valid on both Python 3 and Python 2.7.
19
18
20
- This library is a very thin wrapper around `fissix
21
- <https://github.com/jreese/fissix> `_, a fork of lib2to3.
19
+ This allows you to run your test suite on Python 2.7 and Python 3
20
+ so you can gradually port your code to being fully Python 3
21
+ compatible without slowing down development of your Python 2
22
+ project.
22
23
23
24
The ``python -m modernize `` command works like
24
25
``python -m fissix ``, see `fissix <https://github.com/jreese/fissix >`_.
@@ -37,6 +38,9 @@ Python 2.5 or lower.
37
38
See the ``LICENSE `` file for the license of ``modernize ``.
38
39
Using this tool does not affect licensing of the modernized code.
39
40
41
+ This library is a very thin wrapper around `fissix
42
+ <https://github.com/jreese/fissix> `_, a fork of lib2to3.
43
+
40
44
The `project website `_ can be found on GitHub and the PyPI project name is
41
45
modernize _
42
46
You can’t perform that action at this time.
0 commit comments