diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2007-12-03 21:28:41 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2007-12-03 21:28:41 (GMT) |
commit | 6e751f4ffa9ec646ddcc3f699a18233262912ca2 (patch) | |
tree | 33275743930d083c88f82c0f564de4a724c8c65c /Doc | |
parent | 0a0cf16de9fb57c08013bca4e9db1c73dac1e487 (diff) | |
download | cpython-6e751f4ffa9ec646ddcc3f699a18233262912ca2.zip cpython-6e751f4ffa9ec646ddcc3f699a18233262912ca2.tar.gz cpython-6e751f4ffa9ec646ddcc3f699a18233262912ca2.tar.bz2 |
Grammar fix
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/2.6.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/2.6.rst b/Doc/whatsnew/2.6.rst index 99c23bd..74ed49c 100644 --- a/Doc/whatsnew/2.6.rst +++ b/Doc/whatsnew/2.6.rst @@ -108,7 +108,7 @@ PEP 343: The 'with' statement The previous version, Python 2.5, added the ':keyword:`with`' statement an optional feature, to be enabled by a ``from __future__ -import with_statement`` directive. In 2.6 the statement no longer need to +import with_statement`` directive. In 2.6 the statement no longer needs to be specially enabled; this means that :keyword:`with` is now always a keyword. The rest of this section is a copy of the corresponding section from "What's New in Python 2.5" document; if you read |