Misc/NEWS entry for r79843.

This commit is contained in:
Mark Dickinson 2010-04-06 16:47:55 +00:00
parent 3ec9b942b5
commit 8279167af9
1 changed files with 4 additions and 0 deletions

View File

@ -12,6 +12,10 @@ What's New in Python 2.7 beta 1?
Core and Builtins 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. - Ensure that tokenization of identifiers is not affected by locale.
- Issue #1222585: Added LDCXXSHARED for C++ support. Patch by Arfrever. - Issue #1222585: Added LDCXXSHARED for C++ support. Patch by Arfrever.