summaryrefslogtreecommitdiff
path: root/Modules/faulthandler.c
Commit message (Expand)AuthorAgeFilesLines
* bpo-36856: Handle possible overflow in faulthandler_stack_overflow (GH-13205)Miss Islington (bot)2019-05-271-4/+17
* bpo-36734: Fix compilation of faulthandler.c on HP-UX (GH-12970)Miss Islington (bot)2019-04-301-1/+2
* [3.7] bpo-35214: Initial clang MemorySanitizer support (GH-10479) (GH-10492)Gregory P. Smith2018-11-121-1/+1
* bpo-32297: Few misspellings found in Python source code comments. (#4803)Mike2017-12-141-1/+1
* bpo-32252: Fix faulthandler_suppress_crash_report() (#4794)Victor Stinner2017-12-111-1/+1
* bpo-32030: Enhance Py_Main() (#4412)Victor Stinner2017-11-151-34/+1
* bpo-32030: Split Py_Main() into subfunctions (#4399)Victor Stinner2017-11-151-32/+47
* Replace KB unit with KiB (#4293)Victor Stinner2017-11-081-2/+2
* faulthandler: use _PyTime_t rather than double for timeout (#4139)Victor Stinner2017-10-271-20/+31
* bpo-31701: faulthandler: ignore MSC and COM Windows exception (#3929)Victor Stinner2017-10-091-3/+19
* bpo-25658: Implement PEP 539 for Thread Specific Storage (TSS) API (GH-1362)Masayuki Yamamoto2017-10-061-1/+1
* bpo-31370: Remove support for threads-less builds (#3385)Antoine Pitrou2017-09-071-11/+1
* bpo-30557: faulthandler now correctly filters and displays exception codes on...Steve Dower2017-06-051-4/+4
* bpo-30125: Fix faulthandler.disable() on Windows (#1240)Victor Stinner2017-04-211-24/+19
* faulthandler: Restore the old sigaltstack during teardown (#777)Christophe Zeitouny2017-03-231-1/+16
* bpo-6532: Make the thread id an unsigned integer. (#781)Serhiy Storchaka2017-03-231-1/+1
* Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE whereverSerhiy Storchaka2017-01-231-4/+2
* Issue #28152: Fix -Wunreachable-code warnings on ClangVictor Stinner2016-12-051-0/+9
* Issue #23524: Finish removing _PyVerify_fd from sourcesSteve Dower2016-09-081-1/+1
* replace Py_(u)intptr_t with the c99 standard typesBenjamin Peterson2016-09-061-5/+5
* Avoid calling functions with an empty string as format stringVictor Stinner2016-09-051-3/+3
* - make some internal symbols staticdoko@ubuntu.com2016-05-181-1/+1
* Issue #26778: Fixed "a/an/and" typos in code comment, documentation and errorSerhiy Storchaka2016-04-171-1/+1
|\
| * Issue #26778: Fixed "a/an/and" typos in code comment and documentation.Serhiy Storchaka2016-04-171-1/+1
* | Issue #22570: Renamed Py_SETREF to Py_XSETREF.Serhiy Storchaka2016-04-061-3/+3
|\ \ | |/
| * Issue #22570: Renamed Py_SETREF to Py_XSETREF.Serhiy Storchaka2016-04-061-3/+3
* | Issue #23848: Fix usage of _Py_DumpDecimal()Victor Stinner2016-03-231-1/+1
* | Issue #23848: Try to fix test_faulthandler on ARMVictor Stinner2016-03-231-32/+16
* | faulthandler: only log fatal exceptionsVictor Stinner2016-03-231-3/+10
* | faulthandler: add Windows exception handlerVictor Stinner2016-03-231-64/+189
* | faulthandler now works in non-Python threadsVictor Stinner2016-03-161-11/+57
|/
* faulthandler: Test Py_FatalError() with GIL releasedVictor Stinner2016-03-151-2/+10
* Add _PyThreadState_UncheckedGet()Victor Stinner2016-01-201-1/+1
* Issue #20440: Massive replacing unsafe attribute setting code with specialSerhiy Storchaka2015-12-241-6/+3
* Issue #24115: Update uses of PyObject_IsTrue(), PyObject_Not(),Serhiy Storchaka2015-05-301-2/+2
|\
| * Issue #24115: Update uses of PyObject_IsTrue(), PyObject_Not(),Serhiy Storchaka2015-05-301-2/+2
* | Issue #23836: Fix the faulthandler module to handle reentrant callsVictor Stinner2015-04-011-40/+45
* | Merge 3.4 (faulthandler ICC)Victor Stinner2015-03-231-1/+8
|\ \ | |/
| * Issue #23654: Fix faulthandler._stack_overflow() for the Intel C Compiler (ICC)Victor Stinner2015-03-231-1/+8
* | Issue #23566: enable(), register(), dump_traceback() and dump_traceback_later()Victor Stinner2015-03-121-21/+35
* | Fixed few compiler warnings.Serhiy Storchaka2015-02-161-1/+1
* | Merge 3.4 (faulthandler)Victor Stinner2015-02-111-4/+5
|\ \ | |/
| * Issue #23433: Fix faulthandler._stack_overflow()Victor Stinner2015-02-111-4/+5
* | (Merge 3.4) faulthandler: test_gil_released() now uses _sigsegv() instead ofVictor Stinner2014-09-301-15/+23
|\ \ | |/
| * faulthandler: test_gil_released() now uses _sigsegv() instead of _read_null(),Victor Stinner2014-09-301-15/+23
| * faulthandler: _sigsegv() and _sigabrt() don't accept parametersVictor Stinner2014-09-301-2/+2
* | faulthandler: suppress crash reporter directly in test functions written toVictor Stinner2014-09-301-6/+41
* | Issue #22018: Add _testcapi.raise_signal()Victor Stinner2014-07-211-26/+0
|/
* Issue #21497: faulthandler functions now raise a better error if sys.stderr isVictor Stinner2014-05-141-0/+4
* Merge: #19970: Fix some comment typos.R David Murray2013-12-131-1/+1
|\