Small doc typos

This commit is contained in:
rocky
2018-04-09 01:36:42 -04:00
parent ab414d3d9c
commit 8734608929
12 changed files with 38 additions and 30 deletions

View File

@@ -1,5 +1,5 @@
These are byte-compiled programs compiled by Python 2.4 These are byte-compiled programs compiled by Python 2.4
Furthrmore the programs here are self-checking: when decompiled and Furthermore, the programs here are self-checking: when decompiled and
then run again in a 2.4 interpreter, they will give an error if they then run again in a 2.4 interpreter, they are likely to give an error when they
are miscompiled. are miscompiled.

View File

@@ -1,5 +1,5 @@
These are byte-compiled programs compiled by Python 2.5. These are byte-compiled programs compiled by Python 2.5.
Furthrmore the programs here are self-checking: when decompiled and Furthermore the programs here are self-checking: when decompiled and
then run again in a 2.5 interpreter, they will give an error if they then run again in a 2.5 interpreter, they are likely to give an error
are miscompiled. when they are miscompiled.

View File

@@ -1,5 +1,5 @@
These are byte-compiled programs compiled by Python 2.6. These are byte-compiled programs compiled by Python 2.6.
Furthrmore the programs here are self-checking: when decompiled and Furthermore the programs here are self-checking: when decompiled and
then run again in a 2.6 interpreter, they will give an error if they then run again in a 2.6 interpreter, they are likely to give an error
are miscompiled. when they are miscompiled.

View File

@@ -1,5 +1,5 @@
These are byte-compiled programs compiled by Python 2.7. These are byte-compiled programs compiled by Python 2.7.
Furthrmore the programs here are self-checking: when decompiled and Furthermore, the programs here are self-checking: when decompiled and
then run again in a 2.7 interpreter, they will give an error if they then run again in a 2.7 interpreter, they are likely to give an error
are miscompiled. when they are miscompiled.

View File

@@ -1,5 +1,5 @@
These are byte-compiled programs compiled by Python 3.0. These are byte-compiled programs compiled by Python 3.0.
Furthrmore the programs here are self-checking: when decompiled and Furthermore, the programs here are self-checking: when decompiled and
then run again in a 3.0 interpreter, they will give an error if they then run again in a 3.0 interpreter, they are likely to give an error
are miscompiled. when they are miscompiled.

View File

@@ -1,5 +1,5 @@
These are byte-compiled programs compiled by Python 3.1. These are byte-compiled programs compiled by Python 3.1.
Furthrmore the programs here are self-checking: when decompiled and Furthrmore, the programs here are self-checking: when decompiled and
then run again in a 3.1 interpreter, they will give an error if they then run again in a 3.1 interpreter, they are likely to give an error
are miscompiled. when they are miscompiled.

View File

@@ -1,5 +1,5 @@
These are byte-compiled programs compiled by Python 3.2. These are byte-compiled programs compiled by Python 3.2.
Furthrmore the programs here are self-checking: when decompiled and Furthermore, the programs here are self-checking: when decompiled and
then run again in a 3.2 interpreter, they will give an error if they then run again in a 3.2 interpreter, they are likely to give an error
are miscompiled. when they are miscompiled.

View File

@@ -1,5 +1,5 @@
These are byte-compiled programs compiled by Python 3.3. These are byte-compiled programs compiled by Python 3.3.
Furthrmore the programs here are self-checking: when decompiled and Furthermore, the programs here are self-checking: when decompiled and
then run again in a 3.3 interpreter, they will give an error if they then run again in a 3.3 interpreter, they are likely to give an error
are miscompiled. when they are miscompiled.

View File

@@ -1,5 +1,5 @@
These are byte-compiled programs compiled by Python 3.4. These are byte-compiled programs compiled by Python 3.4.
Furthrmore the programs here are self-checking: when decompiled and Furthermore, the programs here are self-checking: when decompiled and
then run again in a 3.4 interpreter, they will give an error if they then run again in a 3.4 interpreter, they are likely to give an error
are miscompiled. when they are miscompiled.

View File

@@ -1,5 +1,5 @@
These are byte-compiled programs compiled by Python 3.5. These are byte-compiled programs compiled by Python 3.5.
Furthrmore the programs here are self-checking: when decompiled and Furthrmore, the programs here are self-checking: when decompiled and
then run again in a 3.5 interpreter, they will give an error if they then run again in a 3.5 interpreter, they are likely to give an error
are miscompiled. when they are miscompiled.

View File

@@ -0,0 +1,5 @@
These are byte-compiled programs compiled by Python 3.6.
Furthrmore, the programs here are self-checking: when decompiled and
then run again in a 3.6 interpreter, they are likely to give an error
when they are miscompiled.

View File

@@ -70,7 +70,10 @@ def usage():
def main_bin(): def main_bin():
if not (sys.version_info[0:2] in ((2, 6), (2, 7), if not (sys.version_info[0:2] in ((2, 6), (2, 7),
(3, 1), (3, 2), (3, 3), (3, 1), (3, 2), (3, 3),
(3, 4), (3, 5), (3, 6))): (3, 4), (3, 5), (3, 6),
# (3, 7)
)):
# print('Error: %s requires Python 2.6-2.7, or 3.1-3.7' % program,
print('Error: %s requires Python 2.6-2.7, or 3.1-3.6' % program, print('Error: %s requires Python 2.6-2.7, or 3.1-3.6' % program,
file=sys.stderr) file=sys.stderr)
sys.exit(-1) sys.exit(-1)