summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMark Dickinson <mdickinson@enthought.com>2011-09-24 07:56:09 (GMT)
committerMark Dickinson <mdickinson@enthought.com>2011-09-24 07:56:09 (GMT)
commitb2f6bc72a269a0c4ed389ad232b47e2a42b8dde0 (patch)
treeb1e691ab2afcc804385f38036708f598377a0051 /Misc
parentadde86d0e31ce486e72a9d1a2a7625e5e34d97e9 (diff)
downloadcpython-b2f6bc72a269a0c4ed389ad232b47e2a42b8dde0.zip
cpython-b2f6bc72a269a0c4ed389ad232b47e2a42b8dde0.tar.gz
cpython-b2f6bc72a269a0c4ed389ad232b47e2a42b8dde0.tar.bz2
Issue #12973: Fix itertools bug caused by signed integer overflow. Thanks Stefan Krah.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS6
1 files changed, 3 insertions, 3 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index fd98d02..1b03736 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -17,9 +17,9 @@ Core and Builtins
- Issue #13021: Missing decref on an error path. Thanks to Suman Saha for
finding the bug and providing a patch.
-- 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 #12973: Fix overflow checks that relied on undefined behaviour in
+ list_repeat (listobject.c) and islice_next (itertoolsmodule.c). These bugs
+ caused test failures with recent versions of Clang.
- Issue #12802: the Windows error ERROR_DIRECTORY (numbered 267) is now
mapped to POSIX errno ENOTDIR (previously EINVAL).