Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bpo-39429: Add a new "Python Development Mode" doc page (GH-18132) | Victor Stinner | 2020-01-24 | 1 | -0/+3 |
| | |||||
* | bpo-38203: faulthandler.dump_traceback_later() is always available (GH-16249) | Victor Stinner | 2019-09-18 | 1 | -2/+4 |
| | | | | dump_traceback_later() and cancel_dump_traceback_later() functions of the faulthandler module are always available since Python 3.7. | ||||
* | Improve highlighting of some code blocks. (GH-6401) | Serhiy Storchaka | 2018-04-08 | 1 | -3/+3 |
| | |||||
* | Merge Issue #22558. | Terry Jan Reedy | 2016-06-11 | 1 | -0/+2 |
|\ | |||||
| * | Issue #22558: Add remaining doc links to source code for Python-coded modules. | Terry Jan Reedy | 2016-06-11 | 1 | -0/+2 |
| | | | | | | | | | | Reformat header above separator line (added if missing) to a common format. Patch by Yoni Lavi. | ||||
* | | faulthandler: add Windows exception handler | Victor Stinner | 2016-03-23 | 1 | -0/+3 |
|/ | | | | | | Issue #23848: On Windows, faulthandler.enable() now also installs an exception handler to dump the traceback of all Python threads on any Windows exception, not only on UNIX signals (SIGSEGV, SIGFPE, SIGABRT). | ||||
* | Issue #23566: enable(), register(), dump_traceback() and dump_traceback_later() | Victor Stinner | 2015-03-12 | 1 | -0/+24 |
| | | | | functions of faulthandler now accept file descriptors. Patch by Wei Wu. | ||||
* | Issue #12209: Minor edits to faulthandler doc. Patch written by Éric Araujo. | Victor Stinner | 2014-03-25 | 1 | -11/+17 |
| | |||||
* | Fix a few scoping issues with versionadded/versionchanged directives. | Georg Brandl | 2014-03-24 | 1 | -2/+2 |
| | |||||
* | Update faulthandler docs. | Guido van Rossum | 2013-10-21 | 1 | -1/+2 |
| | |||||
* | Closes #15969: rename new API to have consistent names in the faulthandler ↵ | Georg Brandl | 2012-09-22 | 1 | -4/+4 |
| | | | | module. | ||||
* | Update the string limit in the faulthandler documentations | Victor Stinner | 2012-07-31 | 1 | -1/+1 |
| | |||||
* | Issue #12550: Add chain optional argument to faulthandler.register() | Victor Stinner | 2011-07-13 | 1 | -2/+2 |
| | | | | Call the previous signal handler if chain is True. | ||||
* | merge heads | Benjamin Peterson | 2011-06-19 | 1 | -1/+1 |
|\ | |||||
| * | faulthandler doc: the the => the | Victor Stinner | 2011-06-19 | 1 | -1/+1 |
| | | |||||
* | | clarify | Benjamin Peterson | 2011-06-19 | 1 | -6/+6 |
|/ | |||||
* | edit and rewrite | Benjamin Peterson | 2011-06-18 | 1 | -40/+45 |
| | |||||
* | faulthandler: dump all threads by default | Victor Stinner | 2011-05-07 | 1 | -10/+11 |
| | | | | | | | | | | * Set the default value of all_threads arguments to True * Py_FatalError() dumps all threads, instead of only the current thread Dump only the current thread is not reliable. In some cases, Python is unable to retrieve the state of the current thread and so is unable to dump the traceback. faulthandler keeps a reference to the interpreter and so is always able to dump the traceback of all threads. | ||||
* | faulthandler: fix unregister() if it is called before register() | Victor Stinner | 2011-04-08 | 1 | -1/+2 |
| | | | | Fix a crash: don't read from NULL. | ||||
* | Issue #11393: The fault handler handles also SIGABRT | Victor Stinner | 2011-04-01 | 1 | -7/+7 |
| | |||||
* | Fix markup. | Georg Brandl | 2011-04-01 | 1 | -2/+2 |
| | |||||
* | Issue #11393: Fix the documentation (cancel_dump_traceback_later) | Victor Stinner | 2011-03-31 | 1 | -3/+3 |
| | | | | | * dump_traceback_later() => dump_tracebacks_later() * cancel_dump_traceback_later() => cancel_dump_tracebacks_later() | ||||
* | Issue #11393: Add the new faulthandler module | Victor Stinner | 2011-03-30 | 1 | -0/+129 |