commit | b7d033db783b8ca2e4dfe23e348129ed666b6e2b | [log] [tgz] |
---|---|---|
author | Antoine Pitrou <solipsis@pitrou.net> | Wed May 16 14:39:36 2012 +0200 |
committer | Antoine Pitrou <solipsis@pitrou.net> | Wed May 16 14:39:36 2012 +0200 |
tree | 4c504d15647a3997d62e8e2da43dc16d5a2791da | |
parent | b84bc7a7ce6649f786b5b3f80e944cb51b332faf [diff] [blame] | |
parent | a103b96a80f049f68ccf2dd3d5d7858b26a27e94 [diff] [blame] |
Issue #14829: Fix bisect and range() indexing with large indices (>= 2 ** 32) under 64-bit Windows. (untested, because of Windows build issues under 3.x)
diff --git a/Misc/NEWS b/Misc/NEWS index a80238a..b289b54 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -34,6 +34,9 @@ Library ------- +- Issue #14829: Fix bisect and range() indexing with large indices + (>= 2 ** 32) under 64-bit Windows. + - Issue #14732: The _csv module now uses PEP 3121 module initialization. Patch by Robin Schreiber.