From 3351e4142c386a4dc2fd03b693f78d101f66d1a6 Mon Sep 17 00:00:00 2001 From: "Andrew M. Kuchling" Date: Thu, 10 Apr 2008 21:27:10 +0000 Subject: [PATCH] Remove forward-looking statement --- Doc/reference/simple_stmts.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Doc/reference/simple_stmts.rst b/Doc/reference/simple_stmts.rst index 088e9fc5ca4..e5028ab9a77 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