summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@redhat.com>2019-09-18 12:15:10 (GMT)
committerGitHub <noreply@github.com>2019-09-18 12:15:10 (GMT)
commit0a963fbc9c4cf4569f1eadaa2aa1229bb0081256 (patch)
tree8c56b4aaead5f269c769f16b7ff49e5320900b88 /Doc
parentda57599af51c602b015b6880123fef6eccdabcf5 (diff)
downloadcpython-0a963fbc9c4cf4569f1eadaa2aa1229bb0081256.zip
cpython-0a963fbc9c4cf4569f1eadaa2aa1229bb0081256.tar.gz
cpython-0a963fbc9c4cf4569f1eadaa2aa1229bb0081256.tar.bz2
bpo-38203: faulthandler.dump_traceback_later() is always available (GH-16249)
dump_traceback_later() and cancel_dump_traceback_later() functions of the faulthandler module are always available since Python 3.7.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/faulthandler.rst6
1 files changed, 4 insertions, 2 deletions
diff --git a/Doc/library/faulthandler.rst b/Doc/library/faulthandler.rst
index 94ebd87..b588dfa 100644
--- a/Doc/library/faulthandler.rst
+++ b/Doc/library/faulthandler.rst
@@ -100,8 +100,10 @@ Dumping the tracebacks after a timeout
:func:`cancel_dump_traceback_later` is called: see :ref:`issue with file
descriptors <faulthandler-fd>`.
- This function is implemented using a watchdog thread and therefore is not
- available if Python is compiled with threads disabled.
+ This function is implemented using a watchdog thread.
+
+ .. versionchanged:: 3.7
+ This function is now always available.
.. versionchanged:: 3.5
Added support for passing file descriptor to this function.