1. c4e6e0a bail in unicode error's __str__ methods if the objects are not properly initialized (closes #21134) by Benjamin Peterson · 11 years ago
  2. 7cac1c2 Issue #16445: Fix potential segmentation fault when deleting an exception message. by Mark Dickinson · 12 years ago
  3. 0f7e2df this is only a borrowed ref in Brett's branch by Benjamin Peterson · 13 years ago
  4. cec6a61 bltinmod is borrowed, so it shouldn't be decrefed by Benjamin Peterson · 13 years ago
  5. 4c79aec put returns on their own lines by Benjamin Peterson · 13 years ago
  6. b913389 remove INT_MAX assertions; they can fail with large Py_ssize_t #9058 by Benjamin Peterson · 14 years ago
  7. c83ea13 Untabify C files. Will watch buildbots. by Antoine Pitrou · 14 years ago
  8. 2d9856d Issue #7309: Unchecked pointer access when converting UnicodeEncodeError, UnicodeDecodeError, and UnicodeTranslateError to strings. by Eric Smith · 15 years ago
  9. f84caf4 #6108: unicode(exception) and str(exception) should return the same message by Ezio Melotti · 15 years ago
  10. 0674d3f #6844: do not emit DeprecationWarnings on access if Exception.message has been set by the user. by Georg Brandl · 15 years ago
  11. af01c03 Remove unused macro. by Georg Brandl · 15 years ago
  12. 55bd1ef Clear reference to the static PyExc_RecursionErrorInst in _PyExc_Fini. by Alexandre Vassalotti · 15 years ago
  13. 6a743d3 Issue 4804. Add a function to test the validity of file descriptors on Windows, and stop using global runtime settings to silence the warnings / assertions. by Kristján Valur Jónsson · 16 years ago
  14. 59ce042 #4077: No need to append \n when calling Py_FatalError by Amaury Forgeot d'Arc · 16 years ago
  15. c0bf76d backport r64751 by Benjamin Peterson · 16 years ago
  16. 524b777 Issue 2517: Allow unicode messages in Exceptions again by correctly bypassing the instance dictionary when looking up __unicode__ on new-style classes by Nick Coghlan · 16 years ago
  17. dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 16 years ago
  18. 593daf5 Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  19. f19a7b9 A little reformating of Py3k warnings by Benjamin Peterson · 16 years ago
  20. 9f4f481 Use PyErr_WarnPy3k throughout by Benjamin Peterson · 16 years ago
  21. 1a6387e Merged revisions 61750,61752,61754,61756,61760,61763,61768,61772,61775,61805,61809,61812,61819,61917,61920,61930,61933-61934 via svnmerge from by Christian Heimes · 17 years ago
  22. d5b635f Make Py3k warnings consistent w.r.t. punctuation; also respect the by Georg Brandl · 17 years ago
  23. 3781aef Finish backporting new buffer API to Python 2.6. Left to do: memoryview object and structmodule. But, these need to be finished in Python 3.0 first. No objects support the new buffer API in Python 2.6 as of yet, and except for the memoryview object, I don't think they will. by Travis E. Oliphant · 17 years ago
  24. 6d91be3 - Issue 2379: Raise a Py3K warning for __getitem__ or __getslice__ on by Guido van Rossum · 17 years ago
  25. e93237d #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. Macros for b/w compatibility are available. by Christian Heimes · 17 years ago
  26. 44eeaec Patch #1537 from Chad Austin by Christian Heimes · 17 years ago
  27. 1e534b5 Fix a crasher where Python code managed to infinitely recurse in C code without by Brett Cannon · 17 years ago
  28. d7e9f60 Revert accidental checkins from last commit. by Georg Brandl · 17 years ago
  29. fdca6d8 Demand version 2.5.1 since 2.5 has a bug with codecs.open context managers. by Georg Brandl · 17 years ago
  30. 6819210 PEP 3123: Provide forward compatibility with Python 3.0, while keeping by Martin v. Löwis · 17 years ago
  31. 84a3efe Add T_PYSSIZET in structmember.h: This can be used for Py_ssize_t members. by Walter Dörwald · 17 years ago
  32. 5cd0fca Complete deprecation of BaseException.message. Some subclasses were directly by Brett Cannon · 17 years ago
  33. 229cee2 Deprecate BaseException.message as per PEP 352. by Brett Cannon · 17 years ago
  34. c02e131 Add some missing NULL checks which trigger crashes on low-memory conditions. by Georg Brandl · 18 years ago
  35. ee3a1b5 Variation of patch # 1624059 to speed up checking if an object is a subclass by Neal Norwitz · 18 years ago
  36. df08f0b WindowsError.str should display the windows error code, by Thomas Heller · 18 years ago
  37. 3267d28 Bug #1566800: make sure that EnvironmentError can be called with any by Georg Brandl · 18 years ago
  38. f6aa86e Allow exceptions to be directly sliced again by Brett Cannon · 18 years ago
  39. ca2ca79 Remove the __unicode__ method from exceptions. Allows unicode() to be called by Brett Cannon · 18 years ago
  40. 38f6237 Bug #1542051: Exceptions now correctly call PyObject_GC_UnTrack. by Georg Brandl · 18 years ago
  41. 040f76b Slightly revised version of patch #1538956: by Marc-André Lemburg · 18 years ago
  42. 74c3ea0 Fix build problems with the platform SDK on windows. It is not sufficient to test for the C compiler version when determining if we have the secure CRT from microsoft. Must test with an undocumented macro, __STDC_SECURE_LIB__ too. by Kristján Valur Jónsson · 18 years ago
  43. f608317 Fix the CRT argument error handling for VisualStudio .NET 2005. Install a CRT error handler and disable the assertion for debug builds. This causes CRT to set errno to EINVAL. by Kristján Valur Jónsson · 18 years ago
  44. 7a07193 SF #1499797, Fix for memory leak in WindowsError_str by Neal Norwitz · 18 years ago
  45. 38d4d4a Fix memory leak found by valgrind. by Neal Norwitz · 18 years ago
  46. 85ac850 Correctly unpickle 2.4 exceptions via __setstate__ (patch #1498571) by Georg Brandl · 18 years ago
  47. b0432bc Do the check for no keyword arguments in __init__ so that by Georg Brandl · 18 years ago
  48. 861089f Disallow keyword args for exceptions. by Georg Brandl · 18 years ago
  49. 05f97bf Add a test case for exception pickling. args is never NULL. by Georg Brandl · 18 years ago
  50. ddba473 Restore exception pickle support. #1497319. by Georg Brandl · 18 years ago
  51. c7c5114 Fix refleak in socketmodule. Replace bogus Py_BuildValue calls. by Georg Brandl · 18 years ago
  52. c1282ee Make last patch valid C89 so Windows compilers can deal with it. by Thomas Wouters · 18 years ago
  53. 2759627 use the UnicodeError traversal and clearing functions in UnicodeError by Michael W. Hudson · 18 years ago
  54. 43ab100 Fix refleaks in UnicodeError get and set methods. by Georg Brandl · 18 years ago
  55. 96495ee Quality control, meet exceptions.c, round two. by Michael W. Hudson · 18 years ago
  56. 22a80e7 Quality control, meet exceptions.c. by Michael W. Hudson · 18 years ago
  57. 2d555b3 move semicolons by Richard Jones · 18 years ago
  58. c5b2a2e doc string additions and tweaks by Richard Jones · 18 years ago
  59. 94b8c12 Remove spurious semicolons after macro invocations. by Georg Brandl · 18 years ago
  60. 7b9558d Conversion of exceptions over from faked-up classes to new-style C types. by Richard Jones · 18 years ago