From: Mark Dickinson Date: Mon, 19 Sep 2011 18:19:50 +0000 (+0100) Subject: Merge issue #12973 list_repeat fix. X-Git-Tag: v3.3.0a1~1521 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8f53d092f23d063b19a9377fbb7d1d2f62ad77c9;p=thirdparty%2FPython%2Fcpython.git Merge issue #12973 list_repeat fix. --- 8f53d092f23d063b19a9377fbb7d1d2f62ad77c9 diff --cc Misc/NEWS index c786d24a4d81,bc52aa8ae983..72e1a0c8db5f --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -10,9 -10,10 +10,13 @@@ 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. + - Issue #12802: the Windows error ERROR_DIRECTORY (numbered 267) is now mapped to POSIX errno ENOTDIR (previously EINVAL).