[Python-checkins] r62277 - python/trunk/Doc/reference/simple_stmts.rst

andrew.kuchling python-checkins at python.org
Thu Apr 10 23:27:10 CEST 2008


Author: andrew.kuchling
Date: Thu Apr 10 23:27:10 2008
New Revision: 62277

Modified:
   python/trunk/Doc/reference/simple_stmts.rst
Log:
Remove forward-looking statement

Modified: python/trunk/Doc/reference/simple_stmts.rst
==============================================================================
--- python/trunk/Doc/reference/simple_stmts.rst	(original)
+++ python/trunk/Doc/reference/simple_stmts.rst	Thu Apr 10 23:27:10 2008
@@ -501,9 +501,9 @@
 
 .. 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
 


More information about the Python-checkins mailing list