diff options
author | Eric Smith <eric@trueblade.com> | 2008-03-17 19:43:40 (GMT) |
---|---|---|
committer | Eric Smith <eric@trueblade.com> | 2008-03-17 19:43:40 (GMT) |
commit | 0aed07ad80795bd5856ed60e7edcadeb353cf5a0 (patch) | |
tree | 55268a52e9e0686949dea35b218275817b2a1bbe /Misc/NEWS | |
parent | 6f778cfb5ba0291ed29c51fbdd6e40760097fd36 (diff) | |
download | cpython-0aed07ad80795bd5856ed60e7edcadeb353cf5a0.zip cpython-0aed07ad80795bd5856ed60e7edcadeb353cf5a0.tar.gz cpython-0aed07ad80795bd5856ed60e7edcadeb353cf5a0.tar.bz2 |
Added PEP 3127 support to tokenize (with tests); added PEP 3127 to NEWS.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -12,6 +12,10 @@ What's New in Python 2.6 alpha 2? Core and builtins ----------------- +- PEP 3127: octal literals now start with "0o". Old-style octal literals + are still valid. There are binary literals with a prefix of "0b". + This also affects int(x, 0). + - Issue #1779871: Gnu gcc can now build Python on OS X because the flags -Wno-long-double, -no-cpp-precomp, and -mno-fused-madd are no longer passed. |