You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.rst
+9-13Lines changed: 9 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -121,7 +121,7 @@ If the Python version you are running uncompyle6 is between Python 3.6 through 3
121
121
122
122
If the Python version you are running uncompyle6 is 3.11 or later, use a called uncompyle6-*x.y.z*.tar.gz.
123
123
124
-
You can also try eggs or wheel that have the same version designation, e.g., uncompyle6-*x.y.z*-py39-non-any.whl for a Python 3.9 installation. *However, note that *the version without the designation, means Python 3.11 or greater*.
124
+
You can also try eggs or wheels that have the same version designation, e.g., uncompyle6-*x.y.z*-py39-non-any.whl for a Python 3.9 installation. *However, note that *the version without the designation means Python 3.11 or greater*.
125
125
126
126
Similarly a tarball with without `_`*xx* works only from Python 3.11 or greaters
127
127
@@ -134,7 +134,7 @@ It is currently impossible (if not impractical) to have one Python source code o
134
134
Installation from source text
135
135
++++++++++++++++++++++++++++++
136
136
137
-
To install from source code make sure you have the right github
137
+
To install from source code, make sure you have the right github
138
138
branch. See the Requirements section for the Git branch names.
139
139
140
140
After setting the right branch:
@@ -231,29 +231,25 @@ In the Python 3 series, Python support is strongest around 3.4 or
231
231
3.1 or 2.7. Python 3.6 changes things drastically by using word codes
232
232
rather than byte codes. As a result, the jump offset field in a jump
233
233
instruction argument has been reduced. This makes the :code:`EXTENDED_ARG` instructions now more prevalent in jump instructions; previously
234
-
they had been rare. Perhaps to compensate for the additional
235
-
:code:`EXTENDED_ARG` instructions, additional jump optimization has been
236
-
added. So in sum handling control flow by ad hoc means, as is currently
237
-
done is worse.
234
+
they had been rare. Perhaps to compensate for the additional :code:`EXTENDED_ARG` instructions, additional jump optimization has been
235
+
added. So in sum, handling control flow by ad hoc means, as is currently done, is worse.
238
236
239
-
Between Python 3.5, 3.6, 3.7, there have been major changes to the
237
+
Between Python 3.5, 3.6, and 3.7, there have been major changes to the
240
238
:code:`MAKE_FUNCTION` and :code:`CALL_FUNCTION` instructions.
0 commit comments