summaryrefslogtreecommitdiffstats
path: root/Doc/library/faulthandler.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2014-03-24 08:06:18 (GMT)
committerGeorg Brandl <georg@python.org>2014-03-24 08:06:18 (GMT)
commitdf48b97855b378a13d852656d358ca92ecbe4aa3 (patch)
tree3075e47c89a79974038451d9e65cd59c7f533396 /Doc/library/faulthandler.rst
parent645d3b76559d3c85cc90d2c8787fa6c765327e71 (diff)
downloadcpython-df48b97855b378a13d852656d358ca92ecbe4aa3.zip
cpython-df48b97855b378a13d852656d358ca92ecbe4aa3.tar.gz
cpython-df48b97855b378a13d852656d358ca92ecbe4aa3.tar.bz2
Fix a few scoping issues with versionadded/versionchanged directives.
Diffstat (limited to 'Doc/library/faulthandler.rst')
-rw-r--r--Doc/library/faulthandler.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/faulthandler.rst b/Doc/library/faulthandler.rst
index 61bc503..fb9ccf3 100644
--- a/Doc/library/faulthandler.rst
+++ b/Doc/library/faulthandler.rst
@@ -4,6 +4,8 @@
.. module:: faulthandler
:synopsis: Dump the Python traceback.
+.. versionadded:: 3.3
+
This module contains functions to dump Python tracebacks explicitly, on a fault,
after a timeout, or on a user signal. Call :func:`faulthandler.enable` to
install fault handlers for the :const:`SIGSEGV`, :const:`SIGFPE`,
@@ -36,8 +38,6 @@ alternatively be passed to :func:`faulthandler.enable`.
The module is implemented in C, so tracebacks can be dumped on a crash or when
Python is deadlocked.
-.. versionadded:: 3.3
-
Dump the traceback
------------------