diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2010-04-06 16:53:17 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2010-04-06 16:53:17 (GMT) |
commit | 3318d29d2202f58b4011ec050f5e68a14feb6722 (patch) | |
tree | fddb3be27d04080c7d1fa77be3620ae4d9e45881 /Misc | |
parent | f96b78437bdda6e14d6b9b7edb54b8987de42915 (diff) | |
download | cpython-3318d29d2202f58b4011ec050f5e68a14feb6722.zip cpython-3318d29d2202f58b4011ec050f5e68a14feb6722.tar.gz cpython-3318d29d2202f58b4011ec050f5e68a14feb6722.tar.bz2 |
Merged revisions 79843-79844 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r79843 | mark.dickinson | 2010-04-06 17:46:09 +0100 (Tue, 06 Apr 2010) | 4 lines
Issue #8259: Get rid of 'outrageous left shift count' error when
left-shifting an integer by more than 2**31 on a 64-bit machine. Also
convert shift counts to a Py_ssize_t instead of a C long.
........
r79844 | mark.dickinson | 2010-04-06 17:47:55 +0100 (Tue, 06 Apr 2010) | 1 line
Misc/NEWS entry for r79843.
........
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -12,6 +12,10 @@ What's New in Python 3.2 Alpha 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. |