- Issue #17782: Fix undefined behaviour on platforms where `struct timespec`'s "tv_nsec" member is not a C long.

This commit is contained in:
Antoine Pitrou 2013-04-17 22:06:44 +02:00
parent b38897fc91
commit cf8a1e51ec
4 changed files with 21 additions and 4 deletions

View file

@ -12,6 +12,9 @@ What's New in Python 3.3.2?
Core and Builtins
-----------------
- Issue #17782: Fix undefined behaviour on platforms where
``struct timespec``'s "tv_nsec" member is not a C long.
- Issue #17715: Fix segmentation fault from raising an exception in a __trunc__
method.