summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-03-19 20:54:09 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2015-03-19 20:54:09 (GMT)
commit79d68f929d8def878766965f513b628023f809b5 (patch)
tree943c927ae839eb2b115f88d997cd29094ddd23ab /Misc
parent0ed56a0b421e02da3ed3626a5b9e0ad076f68ce0 (diff)
downloadcpython-79d68f929d8def878766965f513b628023f809b5.zip
cpython-79d68f929d8def878766965f513b628023f809b5.tar.gz
cpython-79d68f929d8def878766965f513b628023f809b5.tar.bz2
Issue #23646: If time.sleep() is interrupted by a signal, the sleep is now
retried with the recomputed delay, except if the signal handler raises an exception (PEP 475). Modify also test_signal to use a monotonic clock instead of the system clock.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index cea41ee..4dd5c44 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -18,6 +18,10 @@ Core and Builtins
Library
-------
+- Issue #23646: If time.sleep() is interrupted by a signal, the sleep is now
+ retried with the recomputed delay, except if the signal handler raises an
+ exception (PEP 475).
+
- Issue #23136: _strptime now uniformly handles all days in week 0, including
Dec 30 of previous year. Based on patch by Jim Carroll.