diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2008-04-10 21:27:10 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2008-04-10 21:27:10 (GMT) |
commit | 3351e4142c386a4dc2fd03b693f78d101f66d1a6 (patch) | |
tree | 7276f3e4420d70592b892cc9ce87cf500d0b07c4 /Doc | |
parent | 2ea2968064e1868cc187754d6d9349c2e68b7734 (diff) | |
download | cpython-3351e4142c386a4dc2fd03b693f78d101f66d1a6.zip cpython-3351e4142c386a4dc2fd03b693f78d101f66d1a6.tar.gz cpython-3351e4142c386a4dc2fd03b693f78d101f66d1a6.tar.bz2 |
Remove forward-looking statement
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/reference/simple_stmts.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/reference/simple_stmts.rst b/Doc/reference/simple_stmts.rst index 088e9fc..e5028ab 100644 --- a/Doc/reference/simple_stmts.rst +++ b/Doc/reference/simple_stmts.rst @@ -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 |