1. f3b0639 Issue #27348: Merge exception formatting fix from 3.5 into 3.6 by Martin Panter · 8 years ago
  2. bb8b1cb Issue #27348: Restore “Exception: None” formatting in traceback module by Martin Panter · 8 years ago
  3. 451d0e3 Issue 27948: Allow backslashes in the literal string portion of f-strings, but not in the expressions. Also, require expressions to begin and end with literal curly braces. by Eric V. Smith · 8 years ago
  4. 06cf601 Issue 27921: Remove backslash from another f-string. I'll revert this change before beta 2. I also need to look in to why test_tools/test_unparse fails with the files that are now being skipped. by Eric V. Smith · 8 years ago
  5. 6a4efce Closes issue 27921: Disallow backslashes anywhere in f-strings. This is a temporary restriction. In 3.6 beta 2, the plan is to again allow backslashes in the string parts of f-strings, but disallow them in the expression parts. by Eric V. Smith · 8 years ago
  6. d003423 Issue #26823: Abbreviate recursive tracebacks by Nick Coghlan · 8 years ago
  7. 3e04d5b Issue #27076: Merge spelling from 3.5 by Martin Panter · 8 years ago
  8. 46f5072 Issue #27076: Doc, comment and tests spelling fixes by Martin Panter · 8 years ago
  9. 87b93fe Issue #25111: Fixed comparison of traceback.FrameSummary. by Serhiy Storchaka · 9 years ago
  10. 3066fc4 Issue #25111: Fixed comparison of traceback.FrameSummary. by Serhiy Storchaka · 9 years ago
  11. 4ebf9d3 Issue #25108: Omitted internal frames in traceback functions print_stack(), by Serhiy Storchaka · 9 years ago
  12. e953ba7 Issue #25108: Omitted internal frames in traceback functions print_stack(), by Serhiy Storchaka · 9 years ago
  13. aece824 Issue #24710: Use cls in TracebackException.from_exception. by Robert Collins · 9 years ago
  14. c3f417d Issue #24695: Fix a regression in traceback.print_exception() by Berker Peksag · 9 years ago
  15. 24559e4 Issue #22619: Added negative limit support in the traceback module. by Serhiy Storchaka · 9 years ago
  16. 716b3d3 Issue #23883: Add missing entries to traceback.__all__. by Berker Peksag · 9 years ago
  17. bbb8ade Issue #23631: Fix traceback.format_list when a traceback has been mutated. by Robert Collins · 9 years ago
  18. d7c7e0e Issue #22936: Make it possible to show local variables in tracebacks. by Robert Collins · 9 years ago
  19. 2f0441f Remaining fallout from 17911 by Robert Collins · 9 years ago
  20. 6bc2c1e Issue #17911: traceback module overhaul by Robert Collins · 9 years ago
  21. 521e586 Issue #22032: __qualname__ instead of __name__ is now always used to format by Serhiy Storchaka · 10 years ago
  22. 45e124e Issue #17825: Cursor ^ is correctly positioned for SyntaxError and IndentationError. by Florent Xicluna · 10 years ago
  23. 758fa5e Issue #17825: Cursor ^ is correctly positioned for SyntaxError and IndentationError. by Florent Xicluna · 10 years ago
  24. 64bed06 merge with 3.3 by Georg Brandl · 11 years ago
  25. 9e091e1 Closes #16657: fix docstring of traceback.format_tb(). by Georg Brandl · 11 years ago
  26. 173a157 #1565525: Add traceback.clear_frames() helper function to clear locals ref'd by a traceback by Andrew Kuchling · 11 years ago
  27. d9fec15 refactor traceback.py to reduce code duplication (closes #17646) by Benjamin Peterson · 11 years ago
  28. 4993cc0 utilize yield from by Philip Jenvey · 12 years ago
  29. d5a1c44 PEP 415: Implement suppression of __context__ display with an exception attribute by Benjamin Peterson · 12 years ago
  30. ab7bf21 Close issue #6210: Implement PEP 409 by Nick Coghlan · 12 years ago
  31. 7b0d4a2 Issue #4486: When an exception has an explicit cause, do not print its implicit context too. by Antoine Pitrou · 15 years ago
  32. 2ad07c3 Small PEP8 correction. by Georg Brandl · 15 years ago
  33. 3cfdd9c Merged revisions 73186,73206,73212 via svnmerge from by Georg Brandl · 15 years ago
  34. 236f797 Merged revisions 71237-71238 via svnmerge from by Georg Brandl · 15 years ago
  35. e549ead Merged revisions 70554,70588-70589,70598,70605,70611-70621,70623-70624,70626-70627 via svnmerge from by Benjamin Peterson · 15 years ago
  36. d153afe Remove unnecessary import by Neal Norwitz · 15 years ago
  37. 54a1cc6 Issue #3812: Failed to build python if configure --without-threads. by Hirokazu Yamamoto · 16 years ago
  38. e652821 implement chained exception tracebacks by Benjamin Peterson · 16 years ago
  39. c737283 Remove function obsolete since Python 2.3 from traceback module. by Georg Brandl · 16 years ago
  40. 1a3284e #1535: rename __builtin__ module to builtins. by Georg Brandl · 16 years ago
  41. 33d2689 Merged revisions 56492-56752 via svnmerge from by Guido van Rossum · 17 years ago
  42. ba7bf49 Remove the ability to slice/index on exceptions per PEP 352. by Brett Cannon · 17 years ago
  43. 2633c69 Remove the exceptions builtin module, all the exceptions are already builtin. by Neal Norwitz · 17 years ago
  44. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 17 years ago
  45. 6a2a2a0 Inspired by SF patch #860326, make the exception formatting by by Guido van Rossum · 18 years ago
  46. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  47. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago
  48. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  49. ac3625f Remove sys.exc_type, sys.exc_value, sys.exc_traceback by Neal Norwitz · 18 years ago
  50. 7c187bc Remove redundant isinstance() check. by Thomas Wouters · 18 years ago
  51. bf36409 PEP 352 implementation. Creates a new base class, BaseException, which has an by Brett Cannon · 18 years ago
  52. 182ac85 SF #737473: Show up-to-date source code in tracebacks always. by Hye-Shik Chang · 20 years ago
  53. 58eb11c Whitespace normalization. by Tim Peters · 20 years ago
  54. f607fc5 Add traceback.format_exc(). by Neil Schemenauer · 21 years ago
  55. dd32a91 This is my patch by Michael W. Hudson · 22 years ago
  56. 10ff706 Replaced boolean tests with is None. by Raymond Hettinger · 22 years ago
  57. 0bb580d SF bug 431772: traceback.print_exc() causes traceback by Tim Peters · 23 years ago
  58. a19a168 Whitespace normalization. by Tim Peters · 23 years ago
  59. ed9d0ba Do not print caret when offset is None. by Jeremy Hylton · 23 years ago
  60. 69e9e8b Reformat and edit docstrings to follow modern conventions. Single by Jeremy Hylton · 23 years ago
  61. 40fc160 final round of __all__ lists (I hope) - skipped urllib2 because Moshe may be by Skip Montanaro · 23 years ago
  62. 6e025bc String method cleanup. by Eric S. Raymond · 23 years ago
  63. ec3bbde String method conversion. by Eric S. Raymond · 23 years ago
  64. b90f89a Whitespace normalization. by Tim Peters · 23 years ago
  65. 3ad167a mwh: [ Patch #103228 ] traceback.py nit. by Guido van Rossum · 23 years ago
  66. 2823f03 Patch by Toby Dickenson: don't die when an error occurs during string by Guido van Rossum · 24 years ago
  67. 7e47402 Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either by Thomas Wouters · 24 years ago
  68. 3bb1edb Match the error messages to say "(most recent call last)" like the by Guido van Rossum · 24 years ago
  69. e7b146f The third and final doc-string sweep by Ka-Ping Yee. by Guido van Rossum · 24 years ago
  70. 3f0666c Add obvious needed else clause to format_exception(). by Guido van Rossum · 26 years ago
  71. 6e73af7 New version of tb_lineno(), this time *not* using try-except, to avoid by Guido van Rossum · 26 years ago
  72. 7266496 Tweak the tb_lineno() function to be compatible with JPython, which by Guido van Rossum · 26 years ago
  73. 4752966 Use Marc Lemburg's tb_lineno() to calculate the correct line number. by Guido van Rossum · 27 years ago
  74. 2deb73a Use sys.exc_info() instead of sys.exc_{type,value,traceback}. by Guido van Rossum · 27 years ago
  75. 2715bb2 Changes to always call list.append with a single argument. by Guido van Rossum · 28 years ago
  76. dcc057a Added routines to print, format and extract the current, ``live'' stack. by Guido van Rossum · 28 years ago
  77. 3c99882 removed history comment by Guido van Rossum · 28 years ago
  78. 194e20a add file parameter to all printing fns, default stderr by Guido van Rossum · 29 years ago
  79. 28e99fe added format_* functions (suggestion by Ken M) by Guido van Rossum · 29 years ago
  80. c7acf2a handle class exceptions by Guido van Rossum · 29 years ago
  81. 7aeb4b9 * Lib/linecache.py: don't crash on empty filename by Guido van Rossum · 30 years ago
  82. 526beed New module, formats traceback just like the C code does by Guido van Rossum · 30 years ago