diff options
author | Victor Stinner <vstinner@python.org> | 2021-06-21 12:23:13 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-21 12:23:13 (GMT) |
commit | 9b0bbb9143d15507aae0ff3afeb05969178b306c (patch) | |
tree | c3557da65fa706a1f1dc524148c9138852d9b185 /Doc/whatsnew | |
parent | 7674c83d81905d6afe989ca3f93f08b7939b057c (diff) | |
download | cpython-9b0bbb9143d15507aae0ff3afeb05969178b306c.zip cpython-9b0bbb9143d15507aae0ff3afeb05969178b306c.tar.gz cpython-9b0bbb9143d15507aae0ff3afeb05969178b306c.tar.bz2 |
bpo-44466: Faulthandler now detects the GC (GH-26823) (GH-26826)
The faulthandler module now detects if a fatal error occurs during a
garbage collector collection (only if all_threads is true).
(cherry picked from commit d19163912bfc790283724f05328bd31e4e65003d)
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.10.rst | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.10.rst b/Doc/whatsnew/3.10.rst index 249f0e9..987d125 100644 --- a/Doc/whatsnew/3.10.rst +++ b/Doc/whatsnew/3.10.rst @@ -1003,6 +1003,13 @@ Add *encoding* and *errors* parameters in :func:`fileinput.input` and when *mode* is "r" and file is compressed, like uncompressed files. (Contributed by Inada Naoki in :issue:`5758`.) +faulthandler +------------ + +The :mod:`faulthandler` module now detects if a fatal error occurs during a +garbage collector collection. +(Contributed by Victor Stinner in :issue:`44466`.) + gc -- |