1. 389ef9d Issue #21578: Fixed misleading error message when ImportError called with by Serhiy Storchaka · 8 years ago
  2. 47dee11 Issue #21578: Fixed misleading error message when ImportError called with by Serhiy Storchaka · 8 years ago
  3. c943265 Issue #15767: Add ModuleNotFoundError. by Eric Snow · 8 years ago
  4. f74c33a Merge by Raymond Hettinger · 8 years ago
  5. 7ea386e Issue 19504: Change "customise" to "customize" American spelling. by Raymond Hettinger · 8 years ago
  6. 3766572 Issue #27692: Removed unnecessary NULL checks in exceptions.c. by Serhiy Storchaka · 8 years ago
  7. a787e5f Issue #27652: Expose ESHUTDOWN conditionally by Berker Peksag · 8 years ago
  8. 8bde911 Issue #27626: Merge spelling fixes from 3.5 by Martin Panter · 8 years ago
  9. eb99570 Issue #27626: Spelling fixes in docs, comments and internal names by Martin Panter · 8 years ago
  10. 0b7d84d Issue #27171: Merge typo fixes from 3.5 by Martin Panter · 8 years ago
  11. e26da7c Issue #27171: Fix typos in documentation, comments, and test function names by Martin Panter · 8 years ago
  12. ec39756 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 8 years ago
  13. 4884271 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 8 years ago
  14. 576f132 Issue #20440: Cleaning up the code by using Py_SETREF. by Serhiy Storchaka · 8 years ago
  15. 191321d Issue #20440: More use of Py_SETREF. by Serhiy Storchaka · 8 years ago
  16. 4a1e70f Issue #20440: Applied yet one patch for using Py_SETREF. by Serhiy Storchaka · 8 years ago
  17. 5a57ade Issue #20440: Massive replacing unsafe attribute setting code with special by Serhiy Storchaka · 8 years ago
  18. 2eb819f Issue #25523: Merge "a" to "an" fixes from 3.4 into 3.5 by Martin Panter · 9 years ago
  19. 7462b649 Issue #25523: Correct "a" article to "an" article by Martin Panter · 9 years ago
  20. f488fb4 Issue #19235: Add new RecursionError exception. Patch by Georg Brandl. by Yury Selivanov · 9 years ago
  21. 7544508 PEP 0492 -- Coroutines with async and await syntax. Issue #24017. by Yury Selivanov · 9 years ago
  22. 3dd3e26 Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer() by Serhiy Storchaka · 9 years ago
  23. 4fdb684 Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer() by Serhiy Storchaka · 9 years ago
  24. 12174a5 Issue #22156: Fix "comparison between signed and unsigned integers" compiler by Victor Stinner · 10 years ago
  25. 5b1fdc1 Issue #21669: Special case print & exec syntax errors by Nick Coghlan · 10 years ago
  26. 69598d4 Issue #21118: Fix _PyUnicodeTranslateError_Create(), add missing format by Victor Stinner · 10 years ago
  27. 9b09ba1 bail in unicode error's __str__ methods if the objects are not properly initialized (closes #21134) by Benjamin Peterson · 10 years ago
  28. 8f9f0f1 Issue #20517: Removed unnecessary new (short-lived) functions from PyErr. by Larry Hastings · 10 years ago
  29. b082731 Issue #20517: Functions in the os module that accept two filenames by Larry Hastings · 10 years ago
  30. 77b286b Close #20105: set __traceback__ when chaining exceptions in C by Nick Coghlan · 10 years ago
  31. af01f66 Issue #16136: Remove VMS support and VMS-related code by Christian Heimes · 10 years ago
  32. f1de55f Also chain codec exceptions that allow weakrefs by Nick Coghlan · 11 years ago
  33. 4b9b936 Don't decref exc too soon by Nick Coghlan · 11 years ago
  34. 46ef319 Issue #19429, #19437: fix error handling in the OSError constructor by Victor Stinner · 11 years ago
  35. e109ee8 fix refleaks by Benjamin Peterson · 11 years ago
  36. 079c998 adjust style by Benjamin Peterson · 11 years ago
  37. 6a3db25 Issue #17828: _PyObject_GetDictPtr() may return NULL instead of a PyObject** by Christian Heimes · 11 years ago
  38. 507eabd Issue #17828: va_start() must be accompanied by va_end() by Christian Heimes · 11 years ago
  39. 8b097b4 Close #17828: better handling of codec errors by Nick Coghlan · 11 years ago
  40. c679227 Issue #1772673: The type of `char*` arguments now changed to `const char*`. by Serhiy Storchaka · 11 years ago
  41. 679ecb5 Issue #15767: back out 8a0ed9f63c6e, finishing the removal of by Brett Cannon · 11 years ago
  42. b1611e2 Issue #15767: Introduce ModuleNotFoundError, a subclass of ImportError. by Brett Cannon · 11 years ago
  43. 7faf705 Issue #17591: Use lowercase filenames when including Windows header files. by Antoine Pitrou · 11 years ago
  44. 3014771 Issue #15784: Modify OSError.__str__() to better distinguish between by Richard Oudkerk · 12 years ago
  45. 07c6e71 Issue #15778: Coerce ImportError.args to a string when it isn't already one. by Brett Cannon · 12 years ago
  46. 5562d9d Issue #1692335: Move initial args assignment to BaseException.__new__ by Richard Oudkerk · 12 years ago
  47. f87289b Issue #15229: An OSError subclass whose __init__ doesn't call back by Antoine Pitrou · 12 years ago
  48. c40bc09 Issue #13783: the PEP 380 implementation no longer expands the public C API by Nick Coghlan · 12 years ago
  49. 32bc80c Fix build failure. by Antoine Pitrou · 12 years ago
  50. d5a1c44 PEP 415: Implement suppression of __context__ display with an exception attribute by Benjamin Peterson · 12 years ago
  51. 401f9f3 Fix #13210. Port the Windows build from VS2008 to VS2010. by Brian Curtin · 12 years ago
  52. fd07415 Issue #2377: Make importlib the implementation of __import__(). by Brett Cannon · 12 years ago
  53. 79ec55e Issue #1559549: Add 'name' and 'path' attributes to ImportError. by Brett Cannon · 12 years ago
  54. ab7bf21 Close issue #6210: Implement PEP 409 by Nick Coghlan · 12 years ago
  55. 23d7f12 use new generic __dict__ descriptor implementations by Benjamin Peterson · 12 years ago
  56. 67e7006 merge 3.2 by Benjamin Peterson · 12 years ago
  57. efe7c9d this is only a borrowed ref in Brett's branch by Benjamin Peterson · 12 years ago
  58. 9878b63 merge 3.2 by Benjamin Peterson · 12 years ago
  59. 2f9c71b bltinmod is borrowed, so it shouldn't be decrefed by Benjamin Peterson · 12 years ago
  60. 951138c merge 3.2 by Benjamin Peterson · 12 years ago
  61. 90b1358 put returns on their own lines by Benjamin Peterson · 12 years ago
  62. ac456a1 Fix some of the remaining test_capi leaks by Antoine Pitrou · 12 years ago
  63. 8b0a74e Fix some of the remaining test_capi refleaks by Antoine Pitrou · 12 years ago
  64. 84091bf Fix some of the refleaks in test_capi (ported from 3.2) by Antoine Pitrou · 12 years ago
  65. 55f217f Fix refleaks in test_capi (this was easier than I thought!) by Antoine Pitrou · 12 years ago
  66. bb5b92d Merge refleak fixes from 3.2 by Antoine Pitrou · 12 years ago
  67. 1c7ade5 Fix leaking a RuntimeError objects when creating sub-interpreters by Antoine Pitrou · 12 years ago
  68. 1f7ce62 Implement PEP 380 - 'yield from' (closes #11682) by Nick Coghlan · 12 years ago
  69. e0e2735 Fix OSError.__init__ and OSError.__new__ so that each of them can be by Antoine Pitrou · 12 years ago
  70. 9e30aa5 Fix misuse of PyUnicode_GET_SIZE() => PyUnicode_GET_LENGTH() by Victor Stinner · 13 years ago
  71. 53b33e7 UnicodeTranslateError uses the new Unicode API by Victor Stinner · 13 years ago
  72. da1ddf3 UnicodeEncodeError uses the new Unicode API by Victor Stinner · 13 years ago
  73. b09af03 Port error handlers from Py_UNICODE indexing to code point indexing. by Martin v. Löwis · 13 years ago
  74. 6b4883d PEP 3151 / issue #12555: reworking the OS and IO exception hierarchy. by Antoine Pitrou · 13 years ago
  75. 31392e7 Fix my_basename(): make the string ready by Victor Stinner · 13 years ago
  76. d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
  77. 92236e5 SystemExit_init(): avoid an useless test by Victor Stinner · 13 years ago
  78. 07e20ef Issue #5437: A preallocated MemoryError instance should not hold traceback by Antoine Pitrou · 14 years ago
  79. 08be72d Add a new warning gategory, ResourceWarning, as discussed on python-dev. It is silent by default, by Georg Brandl · 14 years ago
  80. 285a689 Merged revisions 82157 via svnmerge from by Benjamin Peterson · 14 years ago
  81. 7eeb5b5 Issue #8848: U / U# formats of Py_BuildValue() are just alias to s / s# by Victor Stinner · 14 years ago
  82. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  83. 6237daf Don't decode/recode the unicode filename in SyntaxError_str() by Victor Stinner · 14 years ago
  84. c5f4e1e plug reference leak by Benjamin Peterson · 14 years ago
  85. 0facd77 Merged revisions 78418 via svnmerge from by Eric Smith · 14 years ago
  86. 78565b2 Merged revisions 73376,73393,73398,73400,73404-73405,73409,73419-73421,73432,73457,73460,73485-73486,73488-73489,73501-73502,73513-73514 via svnmerge from by Benjamin Peterson · 15 years ago
  87. 2c86004 Merged revisions 73447-73448 via svnmerge from by Georg Brandl · 15 years ago
  88. ab6f2f6 Fix segfaults when running test_exceptions with coverage tracing, caused by wrongly defining Exception.__context__ as a T_OBJECT structmember which does not set the member to NULL on None assignment, and generally does not do type checks. This could be used to crash the interpreter by setting any object to __context__. The same applies to __cause__. Also document the PyException_* functions. by Georg Brandl · 15 years ago
  89. f91df04 Merged revisions 69364-69365,69409-69410,69413,69417,69435,69442,69447,69495,69519-69521 via svnmerge from by Benjamin Peterson · 15 years ago
  90. e94c679 Issue #1717: rename tp_compare to tp_reserved. I'll change the by Mark Dickinson · 15 years ago
  91. b58dda7 Merged revisions 68633,68648,68667,68706,68718,68720-68721,68724-68727,68739 via svnmerge from by Benjamin Peterson · 15 years ago
  92. 4cc0f24 Rename PyUnicode_AsString -> _PyUnicode_AsString and by Marc-André Lemburg · 16 years ago
  93. 2b968d6 #3295 actually define PyExc_BufferError by Benjamin Peterson · 16 years ago
  94. 1a21451 Implement PEP 3121: new module initialization and finalization API. by Martin v. Löwis · 16 years ago
  95. 72b710a Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  96. 7694100 Give with_traceback a docstring. by Georg Brandl · 16 years ago
  97. 90aa764 #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. by Christian Heimes · 16 years ago
  98. d1a1d1e Remove PyInt_CheckExact. Add PyLong_AsLongAndOverflow. by Martin v. Löwis · 16 years ago
  99. cbf3b5c Merged revisions 59275-59303 via svnmerge from by Christian Heimes · 16 years ago
  100. f929077 Reverting last commit. I had some staled data from an attempted svnmerge in my local sandbox by Christian Heimes · 16 years ago