summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-04-01 16:48:58 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2015-04-01 16:48:58 (GMT)
commitc7489a5595293153205a20d77a667a0260b6e96d (patch)
tree1078f230d360dfbbb9596d64ed3e86f0fa957932 /Misc
parent97f86b82b74244974212ff970010e2435dd10c0f (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b34da3a..ddc960f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.