summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMark Dickinson <mdickinson@enthought.com>2011-09-19 18:19:50 (GMT)
committerMark Dickinson <mdickinson@enthought.com>2011-09-19 18:19:50 (GMT)
commit8f53d092f23d063b19a9377fbb7d1d2f62ad77c9 (patch)
tree3c32ce5f7b7aaa3dfbbce24a0745d526f3c611da /Misc
parenta372de8408b28689c63cb5ec711e2dceffc05e92 (diff)
parentc0420fd42ade6d996bfe2ae2beffa3de79524883 (diff)
downloadcpython-8f53d092f23d063b19a9377fbb7d1d2f62ad77c9.zip
cpython-8f53d092f23d063b19a9377fbb7d1d2f62ad77c9.tar.gz
cpython-8f53d092f23d063b19a9377fbb7d1d2f62ad77c9.tar.bz2
Merge issue #12973 list_repeat fix.
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 c786d24..72e1a0c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,10 @@ What's New in Python 3.3 Alpha 1?
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 #12904: os.utime, os.futimes, os.lutimes, and os.futimesat now write
atime and mtime with nanosecond precision on modern POSIX platforms.