diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-04-01 16:48:58 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-04-01 16:48:58 (GMT) |
commit | c7489a5595293153205a20d77a667a0260b6e96d (patch) | |
tree | 1078f230d360dfbbb9596d64ed3e86f0fa957932 /Misc | |
parent | 97f86b82b74244974212ff970010e2435dd10c0f (diff) | |
download | cpython-c7489a5595293153205a20d77a667a0260b6e96d.zip cpython-c7489a5595293153205a20d77a667a0260b6e96d.tar.gz cpython-c7489a5595293153205a20d77a667a0260b6e96d.tar.bz2 |
Issue #23836: Fix the faulthandler module to handle reentrant calls
to its signal handlers.
Use also _Py_write_noraise() instead of write() to retry write() if it is
interrupted by a signal (fail with EINTR).
faulthandler.dump_traceback() also calls PyErr_CheckSignals() to call the
Python signal handler if a signal was received.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -13,6 +13,9 @@ Core and Builtins Library ------- +- Issue #23836: Fix the faulthandler module to handle reentrant calls to + its signal handlers. + - Issue #23838: linecache now clears the cache and returns an empty result on MemoryError. |