diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-03-19 20:54:09 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-03-19 20:54:09 (GMT) |
commit | 79d68f929d8def878766965f513b628023f809b5 (patch) | |
tree | 943c927ae839eb2b115f88d997cd29094ddd23ab /Misc | |
parent | 0ed56a0b421e02da3ed3626a5b9e0ad076f68ce0 (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |