aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Python/traceback.c
Commit message (Expand)AuthorAge
* bpo-35081: Rename internal headers (GH-10275)Victor Stinner2018-11-12
* bpo-35081: Add pycore_ prefix to internal header files (GH-10263)Victor Stinner2018-11-01
* bpo-34588: Fix an off-by-one error in traceback formatting. (GH-9077)Benjamin Peterson2018-09-10
* bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH...Siddhesh Poyarekar2018-04-29
* bpo-30579: Allow TracebackType creation and tb_next mutation from Python (GH-...Nathaniel J. Smith2018-01-07
* bpo-31949: Fixed several issues in printing tracebacks (PyTraceBack_Print())....Serhiy Storchaka2017-11-15
* bpo-25658: Implement PEP 539 for Thread Specific Storage (TSS) API (GH-1362)Masayuki Yamamoto2017-10-06
* bpo-30860: Consolidate stateful runtime globals. (#3397)Eric Snow2017-09-07
* bpo-31370: Remove support for threads-less builds (#3385)Antoine Pitrou2017-09-07
* bpo-6532: Make the thread id an unsigned integer. (#781)Serhiy Storchaka2017-03-23
* Issue #23782: Fixed possible memory leak in _PyTraceback_Add() and exceptionSerhiy Storchaka2016-10-18
|\
| * Issue #23782: Fixed possible memory leak in _PyTraceback_Add() and exceptionSerhiy Storchaka2016-10-18
* | Avoid calling functions with an empty string as format stringVictor Stinner2016-09-05
* | Fix reference leak in tb_printinternal()Victor Stinner2016-08-20
* | Issue #26823: Abbreviate recursive tracebacksNick Coghlan2016-08-15
* | Issue #27336: Fix compilation failures --without-threadsBerker Peksag2016-06-17
* | Rework _Py_DumpASCII() to make Coverity happyVictor Stinner2016-03-23
* | Issue #23848: Expose _Py_DumpHexadecimal()Victor Stinner2016-03-23
* | faulthandler now works in non-Python threadsVictor Stinner2016-03-16
* | Fix compilation error of traceback.c on WindowsVictor Stinner2016-03-16
* | Enhance and rewrite traceback dump C functionsVictor Stinner2016-03-15
|/
* Issue #24436: Added const qualifiers for char* arguments of _PyTraceback_Add.Serhiy Storchaka2015-06-21
|\
| * Issue #24436: Added const qualifiers for char* arguments of _PyTraceback_Add.Serhiy Storchaka2015-06-21
* | Issue #23524: Replace _PyVerify_fd function with calls to _set_thread_local_i...Steve Dower2015-04-12
* | Issue #23836: Use _Py_write_noraise() to retry on EINTR in _Py_DumpTraceback()Victor Stinner2015-04-01
* | Merge 3.4 (traceback)Victor Stinner2015-03-25
|\|
| * Issue #23571: If io.TextIOWrapper constructor fails in _Py_DisplaySourceLine(),Victor Stinner2015-03-25
* | (Merge 3.4) Issue #22762: Fix _Py_DisplaySourceLine(), clear the exception ifVictor Stinner2014-10-30
|\|
| * Issue #22762: Fix _Py_DisplaySourceLine(), clear the exception ifVictor Stinner2014-10-30
* | Issue #22462: Fix pyexpat's creation of a dummy frame to make it appear in ex...Antoine Pitrou2014-10-08
|\|
| * Issue #22462: Fix pyexpat's creation of a dummy frame to make it appear in ex...Antoine Pitrou2014-10-08
* | faulthandler: enhance dump_ascii() to escape also non-printable ASCIIVictor Stinner2014-10-03
* | Issue #22156: Fix "comparison between signed and unsigned integers" compilerVictor Stinner2014-08-15
|/
* Fix _Py_DisplaySourceLine(), if PyTokenizer_FindEncodingFilename() fails, clearVictor Stinner2013-12-19
* Issue #19512, #19515: remove shared identifiers, move identifiers where theyVictor Stinner2013-11-07
* Issue #19512: add some common identifiers to only create common strings once,Victor Stinner2013-11-06
* Issue 19306: Add extra hints to faulthandler stack dumps that they are upside...Guido van Rossum2013-10-20
* merge 3.3Benjamin Peterson2013-07-21
|\
| * fix spacingBenjamin Peterson2013-07-21
* | merge 3.3Benjamin Peterson2013-07-21
|\|
| * let's not return NULL from functions that should return intsBenjamin Peterson2013-07-21
* | Check return value of lseek() in _Py_DisplaySourceLine().Christian Heimes2013-07-21
|\|
| * Check return value of lseek() in _Py_DisplaySourceLine().Christian Heimes2013-07-21
* | Check return value of PyObject_AsFileDescriptor() in _Py_DisplaySourceLine() ...Christian Heimes2013-07-21
|\|
| * Check return value of PyObject_AsFileDescriptor() in _Py_DisplaySourceLine() ...Christian Heimes2013-07-21
* | Issue #18408: Fix _Py_DisplaySourceLine()Victor Stinner2013-07-16
* | Fix compilater warnings on Windows 64-bitVictor Stinner2013-05-17
|/
* Issue #15463: the faulthandler module truncates strings to 500 characters,Victor Stinner2012-07-30
* Issue #15365: Make traceback reporting ignore any errors when printing outKristján Valur Jónsson2012-07-19
* Remove "#ifdef Py_UNICODE_WIDE": Python is now always wideVictor Stinner2011-11-22