diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-02-28 08:26:44 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-02-28 08:26:44 (GMT) |
commit | 85ba673b0a8fa8123bfe2d0434fe35d7f3cee68d (patch) | |
tree | 1480fb010d74d32a5e612b38de5bb4145a6d2f37 /Lib/__future__.py | |
parent | 8de0c1716b90a28973f9c4e1e8816eaadf3b10dd (diff) | |
download | cpython-85ba673b0a8fa8123bfe2d0434fe35d7f3cee68d.zip cpython-85ba673b0a8fa8123bfe2d0434fe35d7f3cee68d.tar.gz cpython-85ba673b0a8fa8123bfe2d0434fe35d7f3cee68d.tar.bz2 |
Whitespace normalization.
Diffstat (limited to 'Lib/__future__.py')
-rw-r--r-- | Lib/__future__.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/__future__.py b/Lib/__future__.py index c50b810..2c263b7 100644 --- a/Lib/__future__.py +++ b/Lib/__future__.py @@ -24,18 +24,18 @@ OptionalRelease records the first release in which was accepted. -In the case of MandatoryReleases that have not yet occurred, -MandatoryRelease predicts the release in which the feature will become part +In the case of MandatoryReleases that have not yet occurred, +MandatoryRelease predicts the release in which the feature will become part of the language. -Else MandatoryRelease records when the feature became part of the language; +Else MandatoryRelease records when the feature became part of the language; in releases at or after that, modules no longer need from __future__ import FeatureName to use the feature in question, but may continue to use such imports. -MandatoryRelease may also be None, meaning that a planned feature got +MandatoryRelease may also be None, meaning that a planned feature got dropped. No line is ever to be deleted from this file. |