diff options
author | Mark Dickinson <mdickinson@enthought.com> | 2011-09-19 18:18:37 (GMT) |
---|---|---|
committer | Mark Dickinson <mdickinson@enthought.com> | 2011-09-19 18:18:37 (GMT) |
commit | c0420fd42ade6d996bfe2ae2beffa3de79524883 (patch) | |
tree | d7bbc5789a54d1e4f79836fa8d5b92c1c7cb5902 /Misc | |
parent | bc566b00adb18c77331f5786525c4584984fda51 (diff) | |
download | cpython-c0420fd42ade6d996bfe2ae2beffa3de79524883.zip cpython-c0420fd42ade6d996bfe2ae2beffa3de79524883.tar.gz cpython-c0420fd42ade6d996bfe2ae2beffa3de79524883.tar.bz2 |
Issue #12973: Fix undefined-behaviour-inducing overflow check in list_repeat.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -10,6 +10,10 @@ What's New in Python 3.2.3? Core and Builtins ----------------- +- Issue #12973: Fix overflow check that relied on undefined behaviour in + list_repeat. This bug caused test_list to fail with recent versions + of Clang. + - Issue #12802: the Windows error ERROR_DIRECTORY (numbered 267) is now mapped to POSIX errno ENOTDIR (previously EINVAL). |