diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2010-04-06 16:47:55 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2010-04-06 16:47:55 (GMT) |
commit | 8279167af9ffa93d6a220254c9f0a45887118157 (patch) | |
tree | 250b0a3de96b9dda5a9c0a29ebb6b5a82f143b32 | |
parent | 3ec9b942b5536e3fc597a065851750e01025b6f1 (diff) | |
download | cpython-8279167af9ffa93d6a220254c9f0a45887118157.zip cpython-8279167af9ffa93d6a220254c9f0a45887118157.tar.gz cpython-8279167af9ffa93d6a220254c9f0a45887118157.tar.bz2 |
Misc/NEWS entry for r79843.
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -12,6 +12,10 @@ What's New in Python 2.7 beta 1? Core and Builtins ----------------- +- Issue #8259: 1L << (2**31) no longer produces an 'outrageous shift error' + on 64-bit machines. The shift count for either left or right shift is + permitted to be up to sys.maxsize. + - Ensure that tokenization of identifiers is not affected by locale. - Issue #1222585: Added LDCXXSHARED for C++ support. Patch by Arfrever. |