From: Antoine Pitrou Date: Wed, 17 Apr 2013 20:07:51 +0000 (+0200) Subject: Issue #17782: Fix undefined behaviour on platforms where ``struct timespec``'s "tv_ns... X-Git-Tag: v3.4.0a1~896^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b8da0a5842c1bdea30520250b3aa34de51a5845b;p=python Issue #17782: Fix undefined behaviour on platforms where ``struct timespec``'s "tv_nsec" member is not a C long. --- b8da0a5842c1bdea30520250b3aa34de51a5845b diff --cc Misc/NEWS index 63634dc9bb,ce27a99505..0edb8e3cd0 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -10,10 -12,9 +10,13 @@@ What's New in Python 3.4.0 Alpha 1 Core and Builtins ----------------- + - Issue #17782: Fix undefined behaviour on platforms where + ``struct timespec``'s "tv_nsec" member is not a C long. + +- Issue #17722: When looking up __round__, resolve descriptors. + +- Issue #16061: Speed up str.replace() for replacing 1-character strings. + - Issue #17715: Fix segmentation fault from raising an exception in a __trunc__ method.