1. aa64c46 Issue #23781: Add private helper function _PyErr_ReplaceException() that by Serhiy Storchaka · 9 years ago
  2. 4bf21e2 Issue #13546: Fixed an overflow issue that could crash the intepreter when by Amaury Forgeot d'Arc · 13 years ago
  3. c83ea13 Untabify C files. Will watch buildbots. by Antoine Pitrou · 14 years ago
  4. 740cdc3 #7033: add new API function PyErr_NewExceptionWithDoc, for easily giving new exceptions a docstring. by Georg Brandl · 15 years ago
  5. a6e3474 Add const qualifier to PyErr_SetFromErrnoWithFilename and to by Alexandre Vassalotti · 15 years ago
  6. b24bb27 Issue #3527: Removed Py_WIN_WIDE_FILENAMES which is not used any more. by Hirokazu Yamamoto · 15 years ago
  7. d3f03fa PyErr_NormalizeException may not set an error, so convert the PyErr_SetObject by Georg Brandl · 15 years ago
  8. 4b5c53a In PyErr_GivenExceptionMatches, temporarily bump the recursion by Georg Brandl · 15 years ago
  9. 0668c62 Issue #2534: speed up isinstance() and issubclass() by 50-70%, so as to by Antoine Pitrou · 16 years ago
  10. 246daed #2542: now that issubclass() may call arbitrary code, by Amaury Forgeot d'Arc · 16 years ago
  11. dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 16 years ago
  12. 593daf5 Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  13. e974689 Re-implement the 'warnings' module in C. This allows for usage of the by Brett Cannon · 16 years ago
  14. 000a074 Modified PyImport_Import and PyImport_ImportModule to always use absolute imports by calling __import__ with an explicit level of 0 by Christian Heimes · 17 years ago
  15. 1e534b5 Fix a crasher where Python code managed to infinitely recurse in C code without by Brett Cannon · 17 years ago
  16. f83b751 SF #1669182, 2.5 was already fixed. Just assert in 2.6 since string exceptions by Neal Norwitz · 18 years ago
  17. 88516a6 When printing an unraisable error, don't print exceptions. before the name. by Neal Norwitz · 18 years ago
  18. 72cd02c Prevent crash on shutdown which can occur if we are finalizing by Neal Norwitz · 18 years ago
  19. 7ccbca9 Forward-port of r52136,52138: a review of overflow-detecting code. by Armin Rigo · 18 years ago
  20. 74d36f0 On Windows, make PyErr_Warn an exported function again. by Thomas Heller · 18 years ago
  21. 07aadb1 Add PyErr_WarnEx() so C code can pass the stacklevel to warnings.warn(). by Neal Norwitz · 18 years ago
  22. a1121fa Fix #1494605. by Georg Brandl · 18 years ago
  23. 5e9d6cf PyErr_Display(), PyErr_WriteUnraisable(): Coverity found a cut-and-paste by Tim Peters · 18 years ago
  24. 7b9558d Conversion of exceptions over from faked-up classes to new-style C types. by Richard Jones · 18 years ago
  25. c611f17 Replace tab inside comment with space. by Walter Dörwald · 18 years ago
  26. 658d513 PyErr_NewException now accepts a tuple of base classes as its "base" parameter. by Georg Brandl · 18 years ago
  27. 1a26920 moduleName can be NULL by Neal Norwitz · 18 years ago
  28. b8f81d4 Add missing DECREF to PyErr_WriteUnraisable(). That function reports by Thomas Wouters · 18 years ago
  29. ac6bd46 spread the extern "C" { } magic pixie dust around. Python itself builds now by Anthony Baxter · 18 years ago
  30. bf36409 PEP 352 implementation. Creates a new base class, BaseException, which has an by Brett Cannon · 19 years ago
  31. 1a5e21e Updates to the with-statement: by Guido van Rossum · 19 years ago
  32. a7444f4 PyErr_ProgramText(): Grrrrrr. by Tim Peters · 19 years ago
  33. d96ee90 Use Py_ssize_t to count the by Martin v. Löwis · 19 years ago
  34. 969f485 -X died some time ago; remove a tiny bit of associated cruft. by Michael W. Hudson · 20 years ago
  35. e5662ae Changed random calls to PyThreadState_Get() to use the macro by Nicholas Bastin · 20 years ago
  36. eddc144 Getting rid of all the code inside #ifdef macintosh too. by Jack Jansen · 21 years ago
  37. 092381a Made function declaration a proper C prototype by Armin Rigo · 21 years ago
  38. 8ae4689 Simplify and speedup uses of Py_BuildValue(): by Raymond Hettinger · 21 years ago
  39. edd0773 Fix [ 771097 ] frozen programs fail due to implicit import of "warnings". by Mark Hammond · 21 years ago
  40. 6b3fffa PyErr_NormalizeException(): in the type==NULL test, we should simply by Guido van Rossum · 21 years ago
  41. a43fd0c Fix bug 683658 - PyErr_Warn may cause import deadlock. by Mark Hammond · 22 years ago
  42. 95292d6 Constify filenames and scripts. Fixes #651362. by Martin v. Löwis · 22 years ago
  43. 3d61a06 Fix [ 616716 ] Bug in PyErr_SetExcFromWindows by Mark Hammond · 22 years ago
  44. da7efaa Fix errors to pep277 checkin identified by Neal Norwitz. by Mark Hammond · 22 years ago
  45. c2e85bd Patch 594001: PEP 277 - Unicode file name support for Windows NT. by Mark Hammond · 22 years ago
  46. 085358a New functions for extension writers on Windows: by Thomas Heller · 22 years ago
  47. 6238d2b Patch #569753: Remove support for WIN16. by Martin v. Löwis · 22 years ago
  48. 7b8c754 Mass checkin of universal newline support. by Jack Jansen · 22 years ago
  49. 3484a18 Patch #494045: patches errno and stat to cope on plan9. by Martin v. Löwis · 23 years ago
  50. cfeb3b6 Patch #50002: Display line information for bad \x escapes: by Martin v. Löwis · 23 years ago
  51. c15c4f1 SF bug [#467265] Compile errors on SuSe Linux on IBM/s390. by Tim Peters · 23 years ago
  52. e2e2c9f PyErr_NormalizeException() by Jeremy Hylton · 23 years ago
  53. 876c8cb PyErr_Format(): Factor out most of this code into by Barry Warsaw · 23 years ago
  54. 024da35 PyErr_Occurred(): Use PyThreadState_GET(), which saves a tiny function call by Tim Peters · 23 years ago
  55. 2b6727b Use Py_CHARMASK for ctype macros. Fixes bug #232787. by Martin v. Löwis · 24 years ago
  56. 2fd4565 Add PyErr_WarnExplicit(), which calls warnings.warn_explicit(), with by Guido van Rossum · 24 years ago
  57. ad3d3f2 Improve SyntaxErrors for bad future statements. Set file and location by Jeremy Hylton · 24 years ago
  58. cfd42b5 Add PyErr_Warn(). by Guido van Rossum · 24 years ago
  59. 661ea26 Ka-Ping Yee <ping@lfw.org>: by Fred Drake · 24 years ago
  60. e693df9 Avoid a couple of "value computed is not used" warnings from gcc -Wall; by Fred Drake · 24 years ago
  61. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  62. b69a27e code part of patch #100895 by Fredrik Lundh by Jeremy Hylton · 24 years ago
  63. b709df3 refactor __del__ exception handler into PyErr_WriteUnraisable by Jeremy Hylton · 24 years ago
  64. 6d63adf Improve the exceptions raised by PyErr_BadInternalCall(); adding the by Fred Drake · 24 years ago
  65. 0888ff1 Do not set a MemoryError exception over another MemoryError exception, by Vladimir Marangozov · 24 years ago
  66. ed473a4 Avoid dumping core when PyErr_NormalizeException() is called without by Guido van Rossum · 24 years ago
  67. f70ef4f Mass ANSIfication of function definitions. Doesn't cover all 'extern' by Thomas Wouters · 24 years ago
  68. 6980dff delete obsolete SYMANTEC__CFM68K__ #ifdefs by Skip Montanaro · 24 years ago
  69. dbd9ba6 Nuke all remaining occurrences of Py_PROTO and Py_FPROTO. by Tim Peters · 24 years ago
  70. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
  71. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  72. fa5c315 PyErr_GivenExceptionMatches(): Check for err==NULL and exc==NULL and by Barry Warsaw · 24 years ago
  73. 0b55670 Mark discovered a bug in his patch: he didn't *use* PyExc_WindowsError by Guido van Rossum · 25 years ago
  74. 584b16a Mark pointed out a buglet in his patch: i < _sys_nerr isn't strong by Guido van Rossum · 25 years ago
  75. 795e189 Patch by Mark Hammond: by Guido van Rossum · 25 years ago
  76. 743007d Patch by Christian Tismer for Win32, to use FormatMessage() instead of by Guido van Rossum · 25 years ago
  77. 885553e Use PyThreadState_GET() macro. by Guido van Rossum · 26 years ago
  78. e0e5982 When errno is zero, avoid calling strerror() and use "Error" for the message. by Guido van Rossum · 26 years ago
  79. 97d9515 PyErr_SetFromErrnoWithFilename(): New function which supports setting by Barry Warsaw · 26 years ago
  80. 19b55f2 Fix subtle bug in cleanup code in PyErr_NormalizeException(), detected by Guido van Rossum · 27 years ago
  81. 2ac650f New version of PyErr_NewException() that is compatible with -X option. by Guido van Rossum · 27 years ago
  82. 3a74993 PyErr_NormalizeException(): If the exception's type is a class and the by Barry Warsaw · 27 years ago
  83. 7617e05 New API PyErr_NewException(name, base, dict) to create simple new exceptions. by Guido van Rossum · 27 years ago
  84. 2d8adff PyErr_NoMemory(): If the pre-instantiated memory exception is non-null by Barry Warsaw · 27 years ago
  85. c0dc92a Three new C API functions: by Barry Warsaw · 27 years ago
  86. e5b4026 Use strerror on the mac if using MSL (Jack). by Guido van Rossum · 27 years ago
  87. a027efa Massive changes for separate thread state management. by Guido van Rossum · 27 years ago
  88. 373c869 Quickly renamed. Also removed the long comment explaining why this is by Guido van Rossum · 27 years ago
  89. 7844e38 Keep Microsoft VC happy. by Guido van Rossum · 27 years ago
  90. 6976a52 (Jack:) On the Mac, use standard strerror() if using MSL C-library. by Guido van Rossum · 27 years ago
  91. 2dc4661 Oops, remove an unused variable from PyErr_Format(). by Guido van Rossum · 28 years ago
  92. 1548bac Added convenience function PyErr_Format(exception, formatstring, ...) -> NULL. by Guido van Rossum · 28 years ago
  93. 067998f Add const to error and newstring functions by Guido van Rossum · 28 years ago
  94. d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
  95. 650ae0a remove unwanted fatal() from err_badcall() by Guido van Rossum · 29 years ago
  96. 69f6ee6 err_badcall() is fatal error by Guido van Rossum · 29 years ago
  97. eceb3e3 Porting to CW CFM68K by Jack Jansen · 29 years ago
  98. 53e8d44 changes in NT tests by Guido van Rossum · 30 years ago
  99. e9fbc09 rename macstrerror to PyMac_StrError; no EINTR test in CW by Guido van Rossum · 30 years ago
  100. 5ef86d5 Undef strerror on the mac before redefining it by Jack Jansen · 30 years ago