summaryrefslogtreecommitdiff
path: root/Lib/__future__.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2001-02-28 08:26:44 +0000
committerTim Peters <tim.peters@gmail.com>2001-02-28 08:26:44 +0000
commit8493a048fce548f63003f790f54cd62e8cc13183 (patch)
treee077ae16ec79ba6553a79563a9d0bb3f5e67fbd9 /Lib/__future__.py
parentc758fafe8d2f44ab3d000944651673dd5abc3ead (diff)
downloadcpython-8493a048fce548f63003f790f54cd62e8cc13183.tar.gz
Whitespace normalization.
Diffstat (limited to 'Lib/__future__.py')
-rw-r--r--Lib/__future__.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/__future__.py b/Lib/__future__.py
index c50b810a7f..2c263b7872 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.