summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2013-04-17 20:06:44 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2013-04-17 20:06:44 (GMT)
commitcf8a1e51ece7cad7096963927993ddfa738627e6 (patch)
tree236620316415785822a0cd67eec0713d8d8409f2 /Misc
parentb38897fc91c7f4b80bc2025ade219674d7b78bf3 (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index be59be0..ce27a99 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.