Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
7e03b66a
Commit
7e03b66a
authored
Jun 17, 2011
by
Benjamin Peterson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
edit and rewrite
parent
c2be7e5a
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
45 additions
and
40 deletions
+45
-40
Doc/library/faulthandler.rst
Doc/library/faulthandler.rst
+45
-40
No files found.
Doc/library/faulthandler.rst
View file @
7e03b66a
...
@@ -4,31 +4,36 @@
...
@@ -4,31 +4,36 @@
.. module:: faulthandler
.. module:: faulthandler
:synopsis: Dump the Python traceback.
:synopsis: Dump the Python traceback.
This module contains functions to dump the Python traceback explicitly, on a
This module contains functions to dump Python tracebacks explicitly, on a fault,
fault, after a timeout or on a user signal. Call :func:`faulthandler.enable` to
after a timeout, or on a user signal. Call :func:`faulthandler.enable` to
install fault handlers for :const:`SIGSEGV`, :const:`SIGFPE`, :const:`SIGABRT`,
install fault handlers for the :const:`SIGSEGV`, :const:`SIGFPE`,
:const:`SIGBUS` and :const:`SIGILL` signals. You can also enable them at
:const:`SIGABRT`, :const:`SIGBUS`, and :const:`SIGILL` signals. You can also
startup by setting the :envvar:`PYTHONFAULTHANDLER` environment variable or by
enable them at startup by setting the :envvar:`PYTHONFAULTHANDLER` environment
using :option:`-X` ``faulthandler`` command line option.
variable or by using :option:`-X` ``faulthandler`` command line option.
The fault handler is compatible with system fault handlers like Apport or
The fault handler is compatible with system fault handlers like Apport or the
the Windows fault handler. The module uses an alternative stack for signal
Windows fault handler. The module uses an alternative stack for signal handlers
handlers, if the :c:func:`sigaltstack` function is available, to be able to
if the :c:func:`sigaltstack` function is available. This allows it to dump the
dump the traceback even on a stack overflow.
traceback even on a stack overflow.
The fault handler is called on catastrophic cases and so can only use
The fault handler is called on catastrophic cases and therefore can only use
signal-safe functions (e.g. it cannot allocate memory on the heap). That's why
signal-safe functions (e.g. it cannot allocate memory on the heap). Because of
the traceback is limited: only support ASCII encoding (use the
this limitation traceback dumping is minimal compared to normal Python
``backslashreplace`` error handler), limit each string to 100 characters, don't
tracebacks:
print the source code (only the filename, the function name and the line
number), limit to 100 frames and 100 threads.
* Only ASCII is supported. The ``backslashreplace`` error handler is used on
encoding.
By default, the Python traceback is written to :data:`sys.stderr`. Start your
* Each string is limited to 100 characters.
graphical applications in a terminal and run your server in foreground to see
* Only the the filename, the function name and the line number are
the traceback, or specify a log file to :func:`faulthandler.enable()`.
displayed. (no source code)
* It is limited to 100 frames and 100 threads.
The module is implemented in C to be able to dump a traceback on a crash or
when Python is blocked (e.g. deadlock).
By default, the Python traceback is written to :data:`sys.stderr`. To see
tracebacks, applications must be run in the terminal. A log file can
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
.. versionadded:: 3.3
...
@@ -38,8 +43,9 @@ Dump the traceback
...
@@ -38,8 +43,9 @@ Dump the traceback
.. function:: dump_traceback(file=sys.stderr, all_threads=True)
.. function:: dump_traceback(file=sys.stderr, all_threads=True)
Dump the traceback of all threads, or of the current thread if *all_threads*
Dump the traceback of all threads into *file*. If *all_threads* is ``True``,
is ``False``, into *file*.
produce tracebacks for every running thread. Otherwise, dump only the current
thread.
Fault handler state
Fault handler state
...
@@ -47,11 +53,11 @@ Fault handler state
...
@@ -47,11 +53,11 @@ Fault handler state
.. function:: enable(file=sys.stderr, all_threads=True)
.. function:: enable(file=sys.stderr, all_threads=True)
Enable the fault handler: install handlers for :const:`SIGSEGV`,
Enable the fault handler: install handlers for
the
:const:`SIGSEGV`,
:const:`SIGFPE`, :const:`SIGABRT`, :const:`SIGBUS` and :const:`SIGILL`
:const:`SIGFPE`, :const:`SIGABRT`, :const:`SIGBUS` and :const:`SIGILL`
signals to dump the Python traceback. I
t dumps the traceback of the all
signals to dump the Python traceback. I
f *all_threads* is ``True``,
threads, or of the current thread if *all_threads* is ``False``, into
produce tracebacks for every running thread. Otherwise, dump only the current
*file*
.
thread
.
.. function:: disable()
.. function:: disable()
...
@@ -69,15 +75,14 @@ Dump the tracebacks after a timeout
...
@@ -69,15 +75,14 @@ Dump the tracebacks after a timeout
.. function:: dump_tracebacks_later(timeout, repeat=False, file=sys.stderr, exit=False)
.. function:: dump_tracebacks_later(timeout, repeat=False, file=sys.stderr, exit=False)
Dump the tracebacks of all threads, after a timeout of *timeout* seconds, or
Dump the tracebacks of all threads, after a timeout of *timeout* seconds, or
each *timeout* seconds if *repeat* is ``True``. If *exit* is True, call
every *timeout* seconds if *repeat* is ``True``. If *exit* is ``True``, call
:c:func:`_exit` with status=1 after dumping the tracebacks to terminate
:c:func:`_exit` with status=1 after dumping the tracebacks. (Note
immediatly the process, which is not safe. For example, :c:func:`_exit`
:c:func:`_exit` doesn't flush file buffers.) If the function is called twice,
doesn't flush file buffers. If the function is called twice, the new call
the new call replaces previous parameters and resets the timeout. The timer
replaces previous parameters (resets the timeout). The timer has a
has a sub-second resolution.
sub-second resolution.
This function is implemented using a watchdog thread and therefore is not
This function is implemented using a watchdog thread, and therefore is
available if Python is compiled with threads disabled.
not available if Python is compiled with threads disabled.
.. function:: cancel_dump_tracebacks_later()
.. function:: cancel_dump_tracebacks_later()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment