summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorEric Smith <eric@trueblade.com>2008-03-17 19:43:40 (GMT)
committerEric Smith <eric@trueblade.com>2008-03-17 19:43:40 (GMT)
commit0aed07ad80795bd5856ed60e7edcadeb353cf5a0 (patch)
tree55268a52e9e0686949dea35b218275817b2a1bbe /Misc/NEWS
parent6f778cfb5ba0291ed29c51fbdd6e40760097fd36 (diff)
downloadcpython-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/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 1963ad5..1fc6691 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.