commit | 3a1dfa21c297a263823033a45e3739d201dfddcf | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Tue Apr 06 21:50:00 2010 +0000 |
committer | Benjamin Peterson <benjamin@python.org> | Tue Apr 06 21:50:00 2010 +0000 |
tree | 4d6526d135f9809f4257937c2d04a68cf005b929 | |
parent | 22c62dd345da5668a8adc86196569ce5df5d2831 [diff] [blame] |
remove a optimization that resulted in unexpected behavior #8929
diff --git a/Misc/NEWS b/Misc/NEWS index 8b415be..7b82372 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -12,6 +12,9 @@ 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.