summaryrefslogtreecommitdiff
path: root/Lib/traceback.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #17825: Cursor ^ is correctly positioned for SyntaxError and Indentatio...Florent Xicluna2014-01-221-3/+4
* Closes #16657: fix docstring of traceback.format_tb().Georg Brandl2013-10-131-1/+1
* Issue #16714: use 'raise' exceptions, don't 'throw'.Andrew Svetlov2012-12-181-1/+1
* Issue #8313: traceback.format_exception_only() encodes unicode message toVictor Stinner2010-05-051-2/+8
* #3584: ignore trailing newlines when placing the caret for a SyntaxError loca...Georg Brandl2009-06-041-1/+1
* #1326077: fix traceback formatting of SyntaxErrors. This fixes two differenc...Georg Brandl2009-04-051-5/+4
* complain when there's no last exceptionBenjamin Peterson2009-03-231-0/+2
* revert r70552; wrong fixBenjamin Peterson2009-03-231-5/+5
* fix very old names for exception terms #5543Benjamin Peterson2009-03-231-5/+5
* Fix a DeprecationWarning about __getitem__() and exceptions in the 'traceback...Brett Cannon2008-08-011-1/+1
* Fix a bug in traceback.format_exception_only() that led to an errorGeorg Brandl2006-09-241-1/+1
* Better fix for bug #1531405, not executing str(value) twice.Georg Brandl2006-08-041-7/+3
* Bug #1531405, format_exception no longer raises an exception ifNeal Norwitz2006-08-041-1/+6
* Whitespace normalization.Tim Peters2006-07-241-4/+4
* Repair accidental NameError.Georg Brandl2006-07-241-1/+2
* Patch #1515343: Fix printing of deprecated string exceptions with aGeorg Brandl2006-07-241-42/+54
* Fix the formatting of KeyboardInterrupt -- a bad issubclass() call.Guido van Rossum2006-05-021-1/+1
* reverting r45321: Patch #860326: traceback.format_exception_only() nowAnthony Baxter2006-04-131-5/+1
* Patch #860326: traceback.format_exception_only() now prepends theGeorg Brandl2006-04-121-1/+5
* Updated the warnings, linecache, inspect, traceback, site, and doctest modulesPhillip J. Eby2006-04-111-3/+3
* traceback now shows error position for all SyntaxError subclasses,Georg Brandl2006-03-311-1/+1
* Revert r42719, because the isinstance() check wasn't redundant; formatting aPhillip J. Eby2006-03-241-1/+1
* Remove redundant isinstance() check.Thomas Wouters2006-03-011-1/+1
* PEP 352 implementation. Creates a new base class, BaseException, which has anBrett Cannon2006-03-011-1/+2
* SF #737473: Show up-to-date source code in tracebacks always.Hye-Shik Chang2004-10-261-0/+3
* Whitespace normalization.Tim Peters2004-01-181-1/+1
* Add traceback.format_exc().Neil Schemenauer2003-11-051-2/+12
* This is my patchMichael W. Hudson2002-08-151-22/+5
* Replaced boolean tests with is None.Raymond Hettinger2002-06-021-5/+5
* SF bug 431772: traceback.print_exc() causes tracebackTim Peters2001-06-101-13/+14
* Whitespace normalization.Tim Peters2001-03-291-1/+1
* Do not print caret when offset is None.Jeremy Hylton2001-03-211-7/+8
* Reformat and edit docstrings to follow modern conventions. SingleJeremy Hylton2001-03-211-50/+68
* final round of __all__ lists (I hope) - skipped urllib2 because Moshe may beSkip Montanaro2001-03-011-0/+5
* String method cleanup.Eric S. Raymond2001-02-101-4/+2
* String method conversion.Eric S. Raymond2001-02-091-6/+6
* Whitespace normalization.Tim Peters2001-01-151-233/+233
* mwh: [ Patch #103228 ] traceback.py nit.Guido van Rossum2001-01-131-1/+5
* Patch by Toby Dickenson: don't die when an error occurs during stringGuido van Rossum2000-08-221-1/+7
* Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in eitherThomas Wouters2000-07-161-1/+1
* Match the error messages to say "(most recent call last)" like theGuido van Rossum2000-04-101-5/+5
* The third and final doc-string sweep by Ka-Ping Yee.Guido van Rossum2000-02-041-7/+68
* Add obvious needed else clause to format_exception().Guido van Rossum1998-03-181-0/+2
* New version of tb_lineno(), this time *not* using try-except, to avoidGuido van Rossum1998-02-261-8/+8
* Tweak the tb_lineno() function to be compatible with JPython, whichGuido van Rossum1998-02-251-4/+8
* Use Marc Lemburg's tb_lineno() to calculate the correct line number.Guido van Rossum1997-09-261-3/+21
* Use sys.exc_info() instead of sys.exc_{type,value,traceback}.Guido van Rossum1997-07-181-9/+9
* Changes to always call list.append with a single argument.Guido van Rossum1996-10-081-2/+2
* Added routines to print, format and extract the current, ``live'' stack.Guido van Rossum1996-08-121-7/+65
* removed history commentGuido van Rossum1996-05-281-3/+0