summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMark Dickinson <mdickinson@enthought.com>2011-09-24 07:57:00 (GMT)
committerMark Dickinson <mdickinson@enthought.com>2011-09-24 07:57:00 (GMT)
commita61b053e611dd97258231913b79fafe0a9a16125 (patch)
treea5112e5cb15610424f8465ec4a9a30d6c5163e83 /Misc
parent3454d524344bf8a0cbe5178ef299e52fcbc0dc84 (diff)
parentb2f6bc72a269a0c4ed389ad232b47e2a42b8dde0 (diff)
downloadcpython-a61b053e611dd97258231913b79fafe0a9a16125.zip
cpython-a61b053e611dd97258231913b79fafe0a9a16125.tar.gz
cpython-a61b053e611dd97258231913b79fafe0a9a16125.tar.bz2
Merge #12973 itertools fix.
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 0e18621..4f55034 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 #12904: os.utime, os.futimes, os.lutimes, and os.futimesat now write
atime and mtime with nanosecond precision on modern POSIX platforms.