diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-03-02 03:11:53 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-03-02 03:11:53 (GMT) |
commit | fd85a4e600348a854b4979d16a51fe2b2ae30794 (patch) | |
tree | 9305811f4a504cc3733376a508b53ade0d84395d | |
parent | 03bd26dd247eae768f6d34761388b8c93be8827d (diff) | |
download | cpython-fd85a4e600348a854b4979d16a51fe2b2ae30794.zip cpython-fd85a4e600348a854b4979d16a51fe2b2ae30794.tar.gz cpython-fd85a4e600348a854b4979d16a51fe2b2ae30794.tar.bz2 |
Typo repair.
-rw-r--r-- | Lib/__future__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/__future__.py b/Lib/__future__.py index 3008f22..beb0b28 100644 --- a/Lib/__future__.py +++ b/Lib/__future__.py @@ -2,7 +2,7 @@ Each line is of the form: - FeatureName = "_Feature(" OptionalRelease "," MandatoryRelease) ")" + FeatureName = "_Feature(" OptionalRelease "," MandatoryRelease ")" where, normally, OptionalRelease < MandatoryRelease, and both are 5-tuples of the same form as sys.version_info: |