summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMark Dickinson <mdickinson@enthought.com>2011-09-19 18:18:37 (GMT)
committerMark Dickinson <mdickinson@enthought.com>2011-09-19 18:18:37 (GMT)
commitc0420fd42ade6d996bfe2ae2beffa3de79524883 (patch)
treed7bbc5789a54d1e4f79836fa8d5b92c1c7cb5902 /Misc
parentbc566b00adb18c77331f5786525c4584984fda51 (diff)
downloadcpython-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/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index bfe5369..bc52aa8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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).