1. 47bbab9 [3.8] bpo-38070: Py_FatalError() logs runtime state (GH-16258) by Victor Stinner · 4 years, 10 months ago
  2. 530f506 bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (GH-13464) by Jeroen Demeyer · 5 years ago
  3. df22c03 bpo-36829: PyErr_WriteUnraisable() normalizes exception (GH-13507) by Victor Stinner · 5 years ago
  4. 351c674 bpo-35983: skip trashcan for subclasses (GH-11841) by Jeroen Demeyer · 5 years ago
  5. d4f9cf5 bpo-33029: Fix signatures of getter and setter functions. (GH-10746) by Serhiy Storchaka · 6 years ago
  6. 621cebe bpo-35081: Rename internal headers (GH-10275) by Victor Stinner · 6 years ago
  7. 27e2d1f bpo-35081: Add pycore_ prefix to internal header files (GH-10263) by Victor Stinner · 6 years ago
  8. d545869 bpo-34588: Fix an off-by-one error in traceback formatting. (GH-9077) by Benjamin Peterson · 6 years ago
  9. 55edd0c bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH-6030) by Siddhesh Poyarekar · 6 years ago
  10. e46a8af bpo-30579: Allow TracebackType creation and tb_next mutation from Python (GH-4793) by Nathaniel J. Smith · 7 years ago
  11. edad8ee bpo-31949: Fixed several issues in printing tracebacks (PyTraceBack_Print()). (#4289) by Serhiy Storchaka · 7 years ago
  12. 731e189 bpo-25658: Implement PEP 539 for Thread Specific Storage (TSS) API (GH-1362) by Masayuki Yamamoto · 7 years ago
  13. 2ebc5ce bpo-30860: Consolidate stateful runtime globals. (#3397) by Eric Snow · 7 years ago
  14. a6a4dc8 bpo-31370: Remove support for threads-less builds (#3385) by Antoine Pitrou · 7 years ago
  15. aefa7eb bpo-6532: Make the thread id an unsigned integer. (#781) by Serhiy Storchaka · 7 years ago
  16. df0fd74 Issue #23782: Fixed possible memory leak in _PyTraceback_Add() and exception by Serhiy Storchaka · 8 years ago
  17. 04eb777 Issue #23782: Fixed possible memory leak in _PyTraceback_Add() and exception by Serhiy Storchaka · 8 years ago
  18. 3466bde Avoid calling functions with an empty string as format string by Victor Stinner · 8 years ago
  19. a88b2f4 Fix reference leak in tb_printinternal() by Victor Stinner · 8 years ago
  20. d003423 Issue #26823: Abbreviate recursive tracebacks by Nick Coghlan · 8 years ago
  21. 531396c Issue #27336: Fix compilation failures --without-threads by Berker Peksag · 8 years ago
  22. 1c3069a Rework _Py_DumpASCII() to make Coverity happy by Victor Stinner · 8 years ago
  23. bd31b7c Issue #23848: Expose _Py_DumpHexadecimal() by Victor Stinner · 8 years ago
  24. 861d9ab faulthandler now works in non-Python threads by Victor Stinner · 8 years ago
  25. 013024e Fix compilation error of traceback.c on Windows by Victor Stinner · 8 years ago
  26. 89e7cdc Enhance and rewrite traceback dump C functions by Victor Stinner · 8 years ago
  27. ccfdf09 Issue #24436: Added const qualifiers for char* arguments of _PyTraceback_Add. by Serhiy Storchaka · 9 years ago
  28. 73c95f1 Issue #24436: Added const qualifiers for char* arguments of _PyTraceback_Add. by Serhiy Storchaka · 9 years ago
  29. 8fc8980 Issue #23524: Replace _PyVerify_fd function with calls to _set_thread_local_invalid_parameter_handler. by Steve Dower · 9 years ago
  30. 97f86b8 Issue #23836: Use _Py_write_noraise() to retry on EINTR in _Py_DumpTraceback() by Victor Stinner · 9 years ago
  31. 39183df Merge 3.4 (traceback) by Victor Stinner · 9 years ago
  32. 81f241a Issue #23571: If io.TextIOWrapper constructor fails in _Py_DisplaySourceLine(), by Victor Stinner · 9 years ago
  33. 3188f82 (Merge 3.4) Issue #22762: Fix _Py_DisplaySourceLine(), clear the exception if by Victor Stinner · 10 years ago
  34. 5e78f4d Issue #22762: Fix _Py_DisplaySourceLine(), clear the exception if by Victor Stinner · 10 years ago
  35. 94262eb Issue #22462: Fix pyexpat's creation of a dummy frame to make it appear in exception tracebacks. by Antoine Pitrou · 10 years ago
  36. 0ddbf47 Issue #22462: Fix pyexpat's creation of a dummy frame to make it appear in exception tracebacks. by Antoine Pitrou · 10 years ago
  37. b86f08f faulthandler: enhance dump_ascii() to escape also non-printable ASCII by Victor Stinner · 10 years ago
  38. 98ea54c Issue #22156: Fix "comparison between signed and unsigned integers" compiler by Victor Stinner · 10 years ago
  39. 5272fa9 Fix _Py_DisplaySourceLine(), if PyTokenizer_FindEncodingFilename() fails, clear by Victor Stinner · 11 years ago
  40. bd303c1 Issue #19512, #19515: remove shared identifiers, move identifiers where they by Victor Stinner · 11 years ago
  41. 0905437 Issue #19512: add some common identifiers to only create common strings once, by Victor Stinner · 11 years ago
  42. 7be5d7d Issue 19306: Add extra hints to faulthandler stack dumps that they are upside down. by Guido van Rossum · 11 years ago
  43. c3e10c2 merge 3.3 by Benjamin Peterson · 11 years ago
  44. 0f9b7d3 fix spacing by Benjamin Peterson · 11 years ago
  45. 33113a3 merge 3.3 by Benjamin Peterson · 11 years ago
  46. 04b01dc let's not return NULL from functions that should return ints by Benjamin Peterson · 11 years ago
  47. 02e8b53 Check return value of lseek() in _Py_DisplaySourceLine(). by Christian Heimes · 11 years ago
  48. 1f34729 Check return value of lseek() in _Py_DisplaySourceLine(). by Christian Heimes · 11 years ago
  49. 8282d74 Check return value of PyObject_AsFileDescriptor() in _Py_DisplaySourceLine() for error by Christian Heimes · 11 years ago
  50. 8c077bc Check return value of PyObject_AsFileDescriptor() in _Py_DisplaySourceLine() for error by Christian Heimes · 11 years ago
  51. ceceaa0 Issue #18408: Fix _Py_DisplaySourceLine() by Victor Stinner · 11 years ago
  52. 84bb1cf Fix compilater warnings on Windows 64-bit by Victor Stinner · 11 years ago
  53. 54f939b Issue #15463: the faulthandler module truncates strings to 500 characters, by Victor Stinner · 12 years ago
  54. c5963d3 Issue #15365: Make traceback reporting ignore any errors when printing out by Kristján Valur Jónsson · 12 years ago
  55. 63ab875 Remove "#ifdef Py_UNICODE_WIDE": Python is now always wide by Victor Stinner · 13 years ago
  56. bd928fe Rename _Py_identifier to _Py_IDENTIFIER. by Martin v. Löwis · 13 years ago
  57. f5cff56 Issue #13088: Add shared Py_hexdigits constant to format a number into base 16 by Victor Stinner · 13 years ago
  58. afe55bb Add API for static strings, primarily good for identifiers. by Martin v. Löwis · 13 years ago
  59. a336de7 traceback: fix dump_ascii() for string with kind=PyUnicode_WCHAR_KIND by Victor Stinner · 13 years ago
  60. d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
  61. fe7c5b5 Issue #9319: Include the filename in "Non-UTF8 code ..." syntax error. by Victor Stinner · 13 years ago
  62. fcb88c4 Issue #11393: _Py_DumpTraceback() writes the header even if there is no frame by Victor Stinner · 13 years ago
  63. 024e37a Issue #11393: Add the new faulthandler module by Victor Stinner · 13 years ago
  64. e5b99f0 Remove redundant includes of headers that are already included by Python.h. by Georg Brandl · 14 years ago
  65. 4c7c8c3 Issue #9713, #10114: Parser functions (eg. PyParser_ASTFromFile) expects by Victor Stinner · 14 years ago
  66. b86680e Explicitly close some files (from issue #10093) by Antoine Pitrou · 14 years ago
  67. 0fe25a4 Issue #6543: Write the traceback in the terminal encoding instead of utf-8. by Victor Stinner · 14 years ago
  68. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  69. 7b82b40 Merged revisions 72487-72488,72879 via svnmerge from by Alexandre Vassalotti · 15 years ago
  70. e94c679 Issue #1717: rename tp_compare to tp_reserved. I'll change the by Mark Dickinson · 15 years ago
  71. 0486904 Bug #4495: Fix signed/unsigned warning (both namelen and tailen should be signed, not just namelen). by Raymond Hettinger · 16 years ago
  72. cf8016a Issues #2384 and #3975: Tracebacks were not correctly printed when the source file by Amaury Forgeot d'Arc · 16 years ago
  73. 4cc0f24 Rename PyUnicode_AsString -> _PyUnicode_AsString and by Marc-André Lemburg · 16 years ago
  74. 2ee470f Merged revisions 64722,64729,64753,64845-64846,64849,64871,64880-64882,64885,64888,64897,64900-64901,64915,64926-64929,64938-64941,64944,64961,64966,64973 via svnmerge from by Georg Brandl · 16 years ago
  75. e652821 implement chained exception tracebacks by Benjamin Peterson · 16 years ago
  76. 72b710a Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  77. 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
  78. 33fe809 Merged revisions 62260-62261,62266,62271,62277-62279,62289-62290,62293-62298,62302-62306,62308,62311,62313-62315,62319-62321 via svnmerge from by Christian Heimes · 16 years ago
  79. 679db4a Merged revisions 59985-60000,60002,60005-60007,60009-60042 via svnmerge from by Christian Heimes · 16 years ago
  80. 0fbab7f Removed another occurrence of PyInt_ExactCheck() by Christian Heimes · 17 years ago
  81. 217cfd1 Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h by Christian Heimes · 17 years ago
  82. 00bc0e0 Patch #1272, by Christian Heimes and Alexandre Vassalotti. by Guido van Rossum · 17 years ago
  83. 3eed765 Bug #1772489: make dir() work on traceback objects again. by Collin Winter · 17 years ago
  84. ee634a4 Get rid of traceback.c:tb_getattr in favor of marking the members as READONLY. by Collin Winter · 17 years ago
  85. 8dfc4a9 Remove support for __members__ and __methods__. There still might be by Neal Norwitz · 17 years ago
  86. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  87. b213704 Merged revisions 53451-53537 via svnmerge from by Thomas Wouters · 17 years ago
  88. ddefaf3 Merged the int/long unification branch, by very crude means (sorry Thomas!). by Guido van Rossum · 17 years ago
  89. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  90. 4af5c8c SF #1444030: Fix several potential defects found by Coverity. by Hye-Shik Chang · 18 years ago
  91. d96ee90 Use Py_ssize_t to count the by Martin v. Löwis · 18 years ago
  92. 3e0055f Merge ast-branch to head by Jeremy Hylton · 19 years ago
  93. a7604bf Moved tracebackobject to traceback.h, Closes SF Bug #497067 by Nicholas Bastin · 20 years ago
  94. fb27656 Getting rid of support for the ancient Apple MPW compiler. by Jack Jansen · 21 years ago
  95. c85b6a2 After the removal of SET_LINENO, PyCode_Addr2Line has always been by Michael W. Hudson · 21 years ago
  96. dd32a91 This is my patch by Michael W. Hudson · 22 years ago
  97. 7b8c754 Mass checkin of universal newline support. by Jack Jansen · 22 years ago
  98. 8358405 Call PyObject_GC_UnTrack before putting an object on the list of trash. by Neil Schemenauer · 22 years ago
  99. 518ab1c Use PyOS_snprintf instead of sprintf. by Jeremy Hylton · 23 years ago
  100. 6d20b43 SF bug 485175: buffer overflow in traceback.c. by Tim Peters · 23 years ago