aboutsummaryrefslogtreecommitdiff
path: root/Python/traceback.c
AgeCommit message (Expand)Author
2021-01-19bpo-42923: _Py_DumpExtensionModules() ignores stdlib ext (GH-24254)Victor Stinner
2021-01-18bpo-42923: Py_FatalError() avoids fprintf() (GH-24242)Victor Stinner
2020-12-17bpo-26564: fix obsolete comment in traceback.c (GH-23819)Irit Katriel
2020-12-01bpo-42519: Replace PyMem_MALLOC() with PyMem_Malloc() (GH-23586)Victor Stinner
2020-04-29bpo-40421: Add PyFrame_GetBack() function (GH-19765)Victor Stinner
2020-04-29bpo-40429: PyFrame_GetCode() now returns a strong reference (GH-19773)Victor Stinner
2020-04-28bpo-40421: Add PyFrame_GetCode() function (GH-19757)Victor Stinner
2020-04-15bpo-40268: Remove unused osdefs.h includes (GH-19532)Victor Stinner
2020-04-15bpo-40268: Remove unused structmember.h includes (GH-19530)Victor Stinner
2020-04-14bpo-40268: Remove a few pycore_pystate.h includes (GH-19510)Victor Stinner
2020-04-11bpo-39943: Add the const qualifier to pointers on non-mutable PyUnicode data....Serhiy Storchaka
2020-03-20bpo-39946: Remove _PyThreadState_GetFrame (GH-19094)Victor Stinner
2019-09-17bpo-38070: _Py_DumpTraceback() writes <no Python frame> (GH-16244)Victor Stinner
2019-07-08bpo-37337: Add _PyObject_CallMethodNoArgs() (GH-14267)Jeroen Demeyer
2019-05-30bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G...Jeroen Demeyer
2019-05-23bpo-36829: PyErr_WriteUnraisable() normalizes exception (GH-13507)Victor Stinner
2019-05-10bpo-35983: skip trashcan for subclasses (GH-11841)Jeroen Demeyer
2018-11-27bpo-33029: Fix signatures of getter and setter functions. (GH-10746)Serhiy Storchaka
2018-11-12bpo-35081: Rename internal headers (GH-10275)Victor Stinner
2018-11-01bpo-35081: Add pycore_ prefix to internal header files (GH-10263)Victor Stinner
2018-09-10bpo-34588: Fix an off-by-one error in traceback formatting. (GH-9077)Benjamin Peterson
2018-04-29bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH...Siddhesh Poyarekar
2018-01-07bpo-30579: Allow TracebackType creation and tb_next mutation from Python (GH-...Nathaniel J. Smith
2017-11-15bpo-31949: Fixed several issues in printing tracebacks (PyTraceBack_Print())....Serhiy Storchaka
2017-10-06bpo-25658: Implement PEP 539 for Thread Specific Storage (TSS) API (GH-1362)Masayuki Yamamoto
2017-09-07bpo-30860: Consolidate stateful runtime globals. (#3397)Eric Snow
2017-09-07bpo-31370: Remove support for threads-less builds (#3385)Antoine Pitrou
2017-03-23bpo-6532: Make the thread id an unsigned integer. (#781)Serhiy Storchaka
2016-10-18Issue #23782: Fixed possible memory leak in _PyTraceback_Add() and exceptionSerhiy Storchaka
2016-10-18Issue #23782: Fixed possible memory leak in _PyTraceback_Add() and exceptionSerhiy Storchaka
2016-09-05Avoid calling functions with an empty string as format stringVictor Stinner
2016-08-20Fix reference leak in tb_printinternal()Victor Stinner
2016-08-15Issue #26823: Abbreviate recursive tracebacksNick Coghlan
2016-06-17Issue #27336: Fix compilation failures --without-threadsBerker Peksag
2016-03-23Rework _Py_DumpASCII() to make Coverity happyVictor Stinner
2016-03-23Issue #23848: Expose _Py_DumpHexadecimal()Victor Stinner
2016-03-16faulthandler now works in non-Python threadsVictor Stinner
2016-03-16Fix compilation error of traceback.c on WindowsVictor Stinner
2016-03-15Enhance and rewrite traceback dump C functionsVictor Stinner
2015-06-21Issue #24436: Added const qualifiers for char* arguments of _PyTraceback_Add.Serhiy Storchaka
2015-06-21Issue #24436: Added const qualifiers for char* arguments of _PyTraceback_Add.Serhiy Storchaka
2015-04-12Issue #23524: Replace _PyVerify_fd function with calls to _set_thread_local_i...Steve Dower
2015-04-01Issue #23836: Use _Py_write_noraise() to retry on EINTR in _Py_DumpTraceback()Victor Stinner
2015-03-25Merge 3.4 (traceback)Victor Stinner
2015-03-25Issue #23571: If io.TextIOWrapper constructor fails in _Py_DisplaySourceLine(),Victor Stinner
2014-10-30(Merge 3.4) Issue #22762: Fix _Py_DisplaySourceLine(), clear the exception ifVictor Stinner
2014-10-30Issue #22762: Fix _Py_DisplaySourceLine(), clear the exception ifVictor Stinner
2014-10-08Issue #22462: Fix pyexpat's creation of a dummy frame to make it appear in ex...Antoine Pitrou
2014-10-08Issue #22462: Fix pyexpat's creation of a dummy frame to make it appear in ex...Antoine Pitrou
2014-10-03faulthandler: enhance dump_ascii() to escape also non-printable ASCIIVictor Stinner