diff options
author | Victor Stinner <vstinner@python.org> | 2021-06-21 11:15:40 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-21 11:15:40 (GMT) |
commit | d19163912bfc790283724f05328bd31e4e65003d (patch) | |
tree | ad8b66feb763211adee9f4b11d44c6c417266268 /Doc/library | |
parent | fb68791a26e157ed3cdeb409c8d8b6cddc7535bd (diff) | |
download | cpython-d19163912bfc790283724f05328bd31e4e65003d.zip cpython-d19163912bfc790283724f05328bd31e4e65003d.tar.gz cpython-d19163912bfc790283724f05328bd31e4e65003d.tar.bz2 |
bpo-44466: Faulthandler now detects the GC (GH-26823)
The faulthandler module now detects if a fatal error occurs during a
garbage collector collection (only if all_threads is true).
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/faulthandler.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/library/faulthandler.rst b/Doc/library/faulthandler.rst index 59274c1..be09123 100644 --- a/Doc/library/faulthandler.rst +++ b/Doc/library/faulthandler.rst @@ -76,6 +76,10 @@ Fault handler state .. versionchanged:: 3.6 On Windows, a handler for Windows exception is also installed. + .. versionchanged:: 3.10 + The dump now mentions if a garbage collector collection is running + if *all_threads* is true. + .. function:: disable() Disable the fault handler: uninstall the signal handlers installed by |