diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2012-05-16 12:37:54 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2012-05-16 12:37:54 (GMT) |
commit | a103b96a80f049f68ccf2dd3d5d7858b26a27e94 (patch) | |
tree | 273d34aaef693b979534b1bfc126ec4560b27a3b /Misc/NEWS | |
parent | 5cdc6308b6ac134ab65f2001e37b0c067dadef7d (diff) | |
download | cpython-a103b96a80f049f68ccf2dd3d5d7858b26a27e94.zip cpython-a103b96a80f049f68ccf2dd3d5d7858b26a27e94.tar.gz cpython-a103b96a80f049f68ccf2dd3d5d7858b26a27e94.tar.bz2 |
Issue #14829: Fix bisect and range() indexing with large indices (>= 2 ** 32) under 64-bit Windows.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -63,6 +63,9 @@ Core and Builtins Library ------- +- Issue #14829: Fix bisect and range() indexing with large indices + (>= 2 ** 32) under 64-bit Windows. + - Issue #14777: tkinter may return undecoded UTF-8 bytes as a string when accessing the Tk clipboard. Modify clipboad_get() to first request type UTF8_STRING when no specific type is requested in an X11 windowing |