]> granicus.if.org Git - python/commitdiff
Remove forward-looking statement
authorAndrew M. Kuchling <amk@amk.ca>
Thu, 10 Apr 2008 21:27:10 +0000 (21:27 +0000)
committerAndrew M. Kuchling <amk@amk.ca>
Thu, 10 Apr 2008 21:27:10 +0000 (21:27 +0000)
Doc/reference/simple_stmts.rst

index 088e9fc5ca40d46bf85609a1e6732badb1972174..e5028ab9a77fa3125e869861436a63801b799338 100644 (file)
@@ -501,9 +501,9 @@ clauses to execute.
 
 .. note::
 
-   In Python 2.2, the :keyword:`yield` statement is only allowed when the
-   ``generators`` feature has been enabled.  It will always be enabled in Python
-   2.3.  This ``__future__`` import statement can be used to enable the feature::
+   In Python 2.2, the :keyword:`yield` statement was only allowed when the
+   ``generators`` feature has been enabled.  This ``__future__``
+   import statement was used to enable the feature::
 
       from __future__ import generators