Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 |