From: Mark Dickinson Date: Sat, 24 Sep 2011 07:57:00 +0000 (+0100) Subject: Merge #12973 itertools fix. X-Git-Tag: v3.3.0a1~1499 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a61b053e611dd97258231913b79fafe0a9a16125;p=thirdparty%2FPython%2Fcpython.git Merge #12973 itertools fix. --- a61b053e611dd97258231913b79fafe0a9a16125 diff --cc Misc/NEWS index 0e18621d2399,1b0373663ea8..4f550340e7fa --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -17,13 -17,10 +17,13 @@@ Core and Builtin - 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. + - Issue #12802: the Windows error ERROR_DIRECTORY (numbered 267) is now mapped to POSIX errno ENOTDIR (previously EINVAL).