diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-04-06 21:55:16 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-04-06 21:55:16 (GMT) |
commit | d856ab6171d117c2f02ed90f3e2b389319ee9ef0 (patch) | |
tree | 60f19b0290b5e3362b9949070a95e7edbe106357 /Misc | |
parent | 670917769197c0561e94c59b95df86525d834eb7 (diff) | |
download | cpython-d856ab6171d117c2f02ed90f3e2b389319ee9ef0.zip cpython-d856ab6171d117c2f02ed90f3e2b389319ee9ef0.tar.gz cpython-d856ab6171d117c2f02ed90f3e2b389319ee9ef0.tar.bz2 |
Merged revisions 79866-79867 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r79866 | benjamin.peterson | 2010-04-06 16:37:06 -0500 (Tue, 06 Apr 2010) | 1 line
use skip decorator
........
r79867 | benjamin.peterson | 2010-04-06 16:50:00 -0500 (Tue, 06 Apr 2010) | 1 line
remove a optimization that resulted in unexpected behavior #8929
........
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -12,6 +12,9 @@ What's New in Python 3.2 Alpha 1? Core and Builtins ----------------- +- Issue #8329: Don't return the same lists from select.select when no fds are + changed. + - 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. |