This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: "Future statements" Doc from 2.6 refers to 2.5
Type: Stage:
Components: Documentation Versions: Python 2.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: benjamin.peterson, georg.brandl, serverhorror
Priority: normal Keywords:

Created on 2008-10-09 20:48 by serverhorror, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg74601 - (view) Author: Martin Marcher (serverhorror) Date: 2008-10-09 20:48
http://docs.python.org/reference/simple_stmts.html#future-statements

says this:

"""
The features recognized by Python 2.5 are absolute_import, division,
generators, nested_scopes and with_statement. generators and
nested_scopes are redundant in Python version 2.3 and above because they
are always enabled.
"""

shouldn't it mention the features recognized by Python 2.6?
msg74603 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2008-10-09 20:54
Thanks for the report! Fixed in r66866.
History
Date User Action Args
2022-04-11 14:56:40adminsetgithub: 48344
2008-10-09 20:54:59benjamin.petersonsetstatus: open -> closed
nosy: + benjamin.peterson
resolution: fixed
messages: + msg74603
2008-10-09 20:48:58serverhorrorcreate