[issue13820] 2.6 is no longer in the future

2012-01-20 Thread Terry J. Reedy
Terry J. Reedy added the comment: I verified that 'as' and 'with' are in the 2.6 keyword.kwlist. http://svn.python.org/projects/python/branches/release26-maint/Lib/keyword.py. I verified that they work as keywords in 2.7. http://svn.python.org/projects/python/branches/release26-maint/Doc/refere

[issue13820] 2.6 is no longer in the future

2012-01-20 Thread Roundup Robot
Roundup Robot added the comment: New changeset c84b39c18963 by Terry Jan Reedy in branch '2.7': Issue13820 as and with really became keywords in 2.6. http://hg.python.org/cpython/rev/c84b39c18963 -- nosy: +python-dev ___ Python tracker

[issue13820] 2.6 is no longer in the future

2012-01-18 Thread Jim Jewett
New submission from Jim Jewett : http://docs.python.org/reference/lexical_analysis.html Changed in version 2.5: Both as and with are only recognized when the with_statement future feature has been enabled. It will always be enabled in Python 2.6. See section The with statement for details. Not