summaryrefslogtreecommitdiff
path: root/Python/traceback.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #23782: Fixed possible memory leak in _PyTraceback_Add() and exceptionSerhiy Storchaka2016-10-181-20/+26
* Issue #24436: Added const qualifiers for char* arguments of _PyTraceback_Add.Serhiy Storchaka2015-06-211-13/+28
|\
| * Issue #23524: Replace _PyVerify_fd function with calls to _set_thread_local_i...Steve Dower2015-04-121-0/+2
| * Issue #23836: Use _Py_write_noraise() to retry on EINTR in _Py_DumpTraceback()Victor Stinner2015-04-011-8/+20
| * Merge 3.4 (traceback)Victor Stinner2015-03-251-1/+8
| |\
| * \ (Merge 3.4) Issue #22762: Fix _Py_DisplaySourceLine(), clear the exception ifVictor Stinner2014-10-301-5/+6
| |\ \
| | * \ Issue #22462: Fix pyexpat's creation of a dummy frame to make it appear in ex...Antoine Pitrou2014-10-081-0/+33
| | |\ \
| | * | | faulthandler: enhance dump_ascii() to escape also non-printable ASCIIVictor Stinner2014-10-031-4/+5
| | * | | Issue #22156: Fix "comparison between signed and unsigned integers" compilerVictor Stinner2014-08-151-1/+1
* | | | | Issue #24436: Added const qualifiers for char* arguments of _PyTraceback_Add.Serhiy Storchaka2015-06-211-1/+1
| |_|_|/ |/| | |
* | | | Issue #23571: If io.TextIOWrapper constructor fails in _Py_DisplaySourceLine(),Victor Stinner2015-03-251-1/+8
|/ / /
* | | Issue #22762: Fix _Py_DisplaySourceLine(), clear the exception ifVictor Stinner2014-10-301-0/+1
| |/ |/|
* | Issue #22462: Fix pyexpat's creation of a dummy frame to make it appear in ex...Antoine Pitrou2014-10-081-0/+33
|/
* Fix _Py_DisplaySourceLine(), if PyTokenizer_FindEncodingFilename() fails, clearVictor Stinner2013-12-191-0/+2
* Issue #19512, #19515: remove shared identifiers, move identifiers where theyVictor Stinner2013-11-071-5/+6
* Issue #19512: add some common identifiers to only create common strings once,Victor Stinner2013-11-061-1/+1
* Issue 19306: Add extra hints to faulthandler stack dumps that they are upside...Guido van Rossum2013-10-201-8/+8
* merge 3.3Benjamin Peterson2013-07-211-1/+1
|\
| * fix spacingBenjamin Peterson2013-07-211-1/+1
* | merge 3.3Benjamin Peterson2013-07-211-2/+2
|\ \ | |/
| * let's not return NULL from functions that should return intsBenjamin Peterson2013-07-211-2/+2
* | Check return value of lseek() in _Py_DisplaySourceLine().Christian Heimes2013-07-211-2/+4
|\ \ | |/ |/|
| * Check return value of PyObject_AsFileDescriptor() in _Py_DisplaySourceLine() ...Christian Heimes2013-07-211-0/+5
| |\
| * | Issue #18408: Fix _Py_DisplaySourceLine()Victor Stinner2013-07-161-1/+3
| * | Fix compilater warnings on Windows 64-bitVictor Stinner2013-05-171-1/+1
* | | Check return value of lseek() in _Py_DisplaySourceLine().Christian Heimes2013-07-211-1/+7
| |/ |/|
* | Check return value of PyObject_AsFileDescriptor() in _Py_DisplaySourceLine() ...Christian Heimes2013-07-211-0/+5
|/
* Issue #15463: the faulthandler module truncates strings to 500 characters,Victor Stinner2012-07-301-1/+1
* Issue #15365: Make traceback reporting ignore any errors when printing outKristj?n Valur J?nsson2012-07-191-1/+4
* Remove "#ifdef Py_UNICODE_WIDE": Python is now always wideVictor Stinner2011-11-221-8/+2
* Rename _Py_identifier to _Py_IDENTIFIER.Martin v. Löwis2011-10-141-4/+4
* Issue #13088: Add shared Py_hexdigits constant to format a number into base 16Victor Stinner2011-10-141-2/+1
* Add API for static strings, primarily good for identifiers.Martin v. Löwis2011-10-091-4/+8
* traceback: fix dump_ascii() for string with kind=PyUnicode_WCHAR_KINDVictor Stinner2011-10-051-3/+13
* Implement PEP 393.Martin v. Löwis2011-09-281-22/+39
* Issue #9319: Include the filename in "Non-UTF8 code ..." syntax error.Victor Stinner2011-04-051-3/+3
* Issue #11393: _Py_DumpTraceback() writes the header even if there is no frameVictor Stinner2011-04-011-7/+7
* Issue #11393: Add the new faulthandler moduleVictor Stinner2011-03-311-0/+235
* Remove redundant includes of headers that are already included by Python.h.Georg Brandl2010-11-301-1/+0
* Issue #9713, #10114: Parser functions (eg. PyParser_ASTFromFile) expectsVictor Stinner2010-10-161-10/+25
* Explicitly close some files (from issue #10093)Antoine Pitrou2010-10-141-0/+6
* Issue #6543: Write the traceback in the terminal encoding instead of utf-8.Victor Stinner2010-06-171-47/+58
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-280/+280
* Merged revisions 72487-72488,72879 via svnmerge fromAlexandre Vassalotti2009-07-211-2/+1
* Issue #1717: rename tp_compare to tp_reserved. I'll change theMark Dickinson2009-02-021-1/+1
* Bug #4495: Fix signed/unsigned warning (both namelen and tailen should be si...Raymond Hettinger2008-12-021-1/+1
* Issues #2384 and #3975: Tracebacks were not correctly printed when the source...Amaury Forgeot d'Arc2008-10-091-81/+141
* Rename PyUnicode_AsString -> _PyUnicode_AsString andMarc-André Lemburg2008-08-071-2/+2
* Merged revisions 64722,64729,64753,64845-64846,64849,64871,64880-64882,64885,...Georg Brandl2008-07-161-2/+2
* implement chained exception tracebacksBenjamin Peterson2008-07-151-7/+20