Fix a few scoping issues with versionadded/versionchanged directives.

This commit is contained in:
Georg Brandl 2014-03-24 09:06:18 +01:00
parent 645d3b7655
commit df48b97855
12 changed files with 38 additions and 32 deletions

View file

@ -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
------------------