diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2013-04-17 20:06:44 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2013-04-17 20:06:44 (GMT) |
commit | cf8a1e51ece7cad7096963927993ddfa738627e6 (patch) | |
tree | 236620316415785822a0cd67eec0713d8d8409f2 /Misc | |
parent | b38897fc91c7f4b80bc2025ade219674d7b78bf3 (diff) | |
download | cpython-cf8a1e51ece7cad7096963927993ddfa738627e6.zip cpython-cf8a1e51ece7cad7096963927993ddfa738627e6.tar.gz cpython-cf8a1e51ece7cad7096963927993ddfa738627e6.tar.bz2 |
- Issue #17782: Fix undefined behaviour on platforms where ``struct timespec``'s "tv_nsec" member is not a C long.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |