1. 90d0cfb bpo-35202: Remove unused imports in tests. (GH-10561) by Srinivas Thatiparthy (శ్రీనివాస్ తాటిపర్తి) · 6 years ago
  2. da8d72c bpo-12458: Fix line numbers for multiline expressions. (GH-8774) by Serhiy Storchaka · 6 years ago
  3. 9797b7a bpo-26502: Implement FrameSummary.__len__() (GH-8632) by Berker Peksag · 6 years ago
  4. d545869 bpo-34588: Fix an off-by-one error in traceback formatting. (GH-9077) by Benjamin Peterson · 6 years ago
  5. de86073 bpo-28603: Fix formatting tracebacks for unhashable exceptions (#4014) by Zane Bitter · 7 years ago
  6. 3480ef9 bpo-30445: Allow appended output in RecursionError message by codedragon · 7 years ago
  7. 2b80145 Issue #25783: Fixed test_traceback when run directly (without regrtest). by Serhiy Storchaka · 8 years ago
  8. 1c1130f Issue #25783: Fixed test_traceback when run directly (without regrtest). by Serhiy Storchaka · 8 years ago
  9. f3b0639 Issue #27348: Merge exception formatting fix from 3.5 into 3.6 by Martin Panter · 8 years ago
  10. bb8b1cb Issue #27348: Restore “Exception: None” formatting in traceback module by Martin Panter · 8 years ago
  11. b728105 Issue #27213: Fixed different issues with reworked CALL_FUNCTION* opcodes. by Serhiy Storchaka · 8 years ago
  12. 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
  13. f9b760f Rework CALL_FUNCTION* opcodes by Victor Stinner · 8 years ago
  14. 1b8f7b8 Issue 27921: Remove backslash from another f-string. I'll revert this change before beta 2. by Eric V. Smith · 8 years ago
  15. d003423 Issue #26823: Abbreviate recursive tracebacks by Nick Coghlan · 8 years ago
  16. bae75cf Issue #19527: Fixed tests with defined COUNT_ALLOCS. by Serhiy Storchaka · 8 years ago
  17. a793037 Issue #19527: Fixed tests with defined COUNT_ALLOCS. by Serhiy Storchaka · 8 years ago
  18. 614827c Additional grammar fix by Martin Panter · 8 years ago
  19. 51d8c52 Replace noop constant statement with expression by Victor Stinner · 8 years ago
  20. 3066fc4 Issue #25111: Fixed comparison of traceback.FrameSummary. by Serhiy Storchaka · 9 years ago
  21. e953ba7 Issue #25108: Omitted internal frames in traceback functions print_stack(), by Serhiy Storchaka · 9 years ago
  22. c3f417d Issue #24695: Fix a regression in traceback.print_exception() by Berker Peksag · 9 years ago
  23. ce64391 Issue #9517: Move script_helper to the support package. by Berker Peksag · 9 years ago
  24. 24559e4 Issue #22619: Added negative limit support in the traceback module. by Serhiy Storchaka · 9 years ago
  25. 716b3d3 Issue #23883: Add missing entries to traceback.__all__. by Berker Peksag · 9 years ago
  26. bbb8ade Issue #23631: Fix traceback.format_list when a traceback has been mutated. by Robert Collins · 9 years ago
  27. d7c7e0e Issue #22936: Make it possible to show local variables in tracebacks. by Robert Collins · 9 years ago
  28. 07ff167 Fix brownbag in issue 17911 commit by Robert Collins · 9 years ago
  29. 6bc2c1e Issue #17911: traceback module overhaul by Robert Collins · 9 years ago
  30. 9d279b8 (Merge 3.4) Issue #22599: Enhance tokenize.open() to be able to call it during by Victor Stinner · 10 years ago
  31. 521e586 Issue #22032: __qualname__ instead of __name__ is now always used to format by Serhiy Storchaka · 10 years ago
  32. f28ba36 Issue #20532: Tests which use _testcapi now are marked as CPython only. by Serhiy Storchaka · 10 years ago
  33. 5cfc79d Issue #20532: Tests which use _testcapi now are marked as CPython only. by Serhiy Storchaka · 10 years ago
  34. 45e124e Issue #17825: Cursor ^ is correctly positioned for SyntaxError and IndentationError. by Florent Xicluna · 11 years ago
  35. 758fa5e Issue #17825: Cursor ^ is correctly positioned for SyntaxError and IndentationError. by Florent Xicluna · 11 years ago
  36. 2bd59da Issue #2382: SyntaxError cursor "^" now is written at correct position in most by Serhiy Storchaka · 11 years ago
  37. 65fd059 Issue #2382: SyntaxError cursor "^" now is written at correct position in most by Serhiy Storchaka · 11 years ago
  38. 5940b92 Do not reset the line number because we already set file position to correct by Serhiy Storchaka · 11 years ago
  39. 1064a13 Do not reset the line number because we already set file position to correct by Serhiy Storchaka · 11 years ago
  40. 173a157 #1565525: Add traceback.clear_frames() helper function to clear locals ref'd by a traceback by Andrew Kuchling · 11 years ago
  41. 58720d6 Issue #17934: Add a clear() method to frame objects, to help clean up expensive details (local variables) and break reference cycles. by Antoine Pitrou · 11 years ago
  42. d9fec15 refactor traceback.py to reduce code duplication (closes #17646) by Benjamin Peterson · 11 years ago
  43. ab7bf21 Close issue #6210: Implement PEP 409 by Nick Coghlan · 12 years ago
  44. b3aedd4 #9424: Replace deprecated assert* methods in the Python test suite. by Ezio Melotti · 14 years ago
  45. a95e977 decrement offset when it points to a newline (#10186 followup) by Benjamin Peterson · 14 years ago
  46. 503d6c5 remove broken code accounting an offset the size of the line #10186 by Benjamin Peterson · 14 years ago
  47. 26d64ae rewrite nocaret test to not rely on a specific SyntaxError by Benjamin Peterson · 14 years ago
  48. b58e0bd use assert[Not]In where appropriate by Ezio Melotti · 15 years ago
  49. 577473f use assert[Not]In where appropriate by Benjamin Peterson · 15 years ago
  50. 7b0d4a2 Issue #4486: When an exception has an explicit cause, do not print its implicit context too. by Antoine Pitrou · 15 years ago
  51. c9c0f20 convert old fail* assertions to assert* by Benjamin Peterson · 15 years ago
  52. 751899a Merged revisions 73232 via svnmerge from by Georg Brandl · 15 years ago
  53. 236f797 Merged revisions 71237-71238 via svnmerge from by Georg Brandl · 15 years ago
  54. cf8016a Issues #2384 and #3975: Tracebacks were not correctly printed when the source file by Amaury Forgeot d'Arc · 16 years ago
  55. e652821 implement chained exception tracebacks by Benjamin Peterson · 16 years ago
  56. ee8712c #2621 rename test.test_support to test.support by Benjamin Peterson · 16 years ago
  57. 81ee3ef Merged revisions 62425-62429,62434-62436,62441,62444,62446-62448,62450-62455,62463,62465-62466,62469,62474,62476-62478,62480,62485,62492,62497-62498,62500,62507,62513-62514,62516,62521,62531,62535,62545-62546,62548-62551,62553-62559,62569,62574,62577,62593,62595,62604-62606,62608,62616,62626-62627,62636,62638,62644-62645,62647-62648,62651-62653,62656,62661,62663,62680,62686-62687,62696,62699-62703,62711 via svnmerge from by Christian Heimes · 16 years ago
  58. 1a3284e #1535: rename __builtin__ module to builtins. by Georg Brandl · 17 years ago
  59. 3add4d7 Raise statement normalization in Lib/test/. by Collin Winter · 17 years ago
  60. 8dfc4a9 Remove support for __members__ and __methods__. There still might be by Neal Norwitz · 17 years ago
  61. e61fd5b Patch by Christian Heimes to change self.assert_(x == y) into by Guido van Rossum · 17 years ago
  62. e7ba495 Merged revisions 55631-55794 via svnmerge from by Guido van Rossum · 17 years ago
  63. 44c5261 Tweak the fix for test_traceback since the fix for it to run on its own broke by Brett Cannon · 17 years ago
  64. dfb2a8a Fix a broken test in test_traceback where the module name was being tacked on by Brett Cannon · 17 years ago
  65. 88fc664 * Remove PRINT_ITEM(_TO), PRINT_NEWLINE(_TO) opcodes. by Georg Brandl · 17 years ago
  66. be19ed7 Fix most trivially-findable print statements. by Guido van Rossum · 17 years ago
  67. b940e11 SF patch 1631942 by Collin Winter: by Guido van Rossum · 18 years ago
  68. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  69. 6a2a2a0 Inspired by SF patch #860326, make the exception formatting by by Guido van Rossum · 18 years ago
  70. bf12cdb Quite a few fixes to make the library and test suite more robust when by Guido van Rossum · 18 years ago
  71. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  72. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago
  73. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  74. c85c74c Increase code coverage in Python/structmember.c from 33% to 40% by Walter Dörwald · 19 years ago
  75. f7010be * Bumped up the sleep() delay to four seconds so this test will run by Raymond Hettinger · 20 years ago
  76. 4a8d851 Bug #1057993: Use sleep() always instead of os.utime() possibly broken by Hye-Shik Chang · 20 years ago
  77. 7afa64e Add a comment explains why we should modify mtime here. by Hye-Shik Chang · 20 years ago
  78. 1816d79 Removed newly redundant embedded import. by Tim Peters · 20 years ago
  79. 10d59f3 Whitespace normalization. by Tim Peters · 20 years ago
  80. f1af9c0 Paper over bug 1054615 by passing sane values to os.utime(). by Tim Peters · 20 years ago
  81. 182ac85 SF #737473: Show up-to-date source code in tracebacks always. by Hye-Shik Chang · 20 years ago
  82. 57f0f34 Skip the test_nocaret test when running as jython. Jython happens to add by Finn Bock · 22 years ago
  83. 408b6d3 Complete the absolute import patch for the test suite. All relative by Barry Warsaw · 22 years ago
  84. 04f357c Get rid of relative imports in all unittests. Now anything that by Barry Warsaw · 22 years ago
  85. 2e2be37 Change the PyUnit-based tests to use the test_main() approach. This by Fred Drake · 23 years ago
  86. 3090694 Fix compileall.py so that it fails on SyntaxErrors by Jeremy Hylton · 23 years ago
  87. 7e01e28 Whitespace normalization. by Tim Peters · 23 years ago
  88. 09ccc3a Test that traceback module works with SyntaxErrors with or without carets. by Jeremy Hylton · 23 years ago