1. 92be939 Issue #10780: PyErr_SetFromWindowsErrWithFilename() and by Victor Stinner · 14 years ago
  2. 07e20ef Issue #5437: A preallocated MemoryError instance should not hold traceback by Antoine Pitrou · 14 years ago
  3. 08be72d Add a new warning gategory, ResourceWarning, as discussed on python-dev. It is silent by default, by Georg Brandl · 14 years ago
  4. 15a71cd PyErr_SyntaxLocationEx() uses PyUnicode_DecodeFSDefault(), instead of by Victor Stinner · 14 years ago
  5. 2c53971 add PyErr_SyntaxLocationEx, to support adding a column offset by Benjamin Peterson · 14 years ago
  6. 7eeb5b5 Issue #8848: U / U# formats of Py_BuildValue() are just alias to s / s# by Victor Stinner · 14 years ago
  7. 8e0bdfd Make PyErr_Occurred return NULL if there is no current thread. Previously it by Jeffrey Yasskin · 14 years ago
  8. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  9. 8d93e49 PyErr_SetFromErrnoWithFilename() decodes the filename using by Victor Stinner · 14 years ago
  10. dc8c2ad Poor PLAN9, it isn't supported by Antoine Pitrou · 14 years ago
  11. 1e28a27 Merged revisions 77088 via svnmerge from by Georg Brandl · 15 years ago
  12. 8223c24 Merged revisions 72698-72699 via svnmerge from by Hirokazu Yamamoto · 15 years ago
  13. 406b3d8 Merged revisions 71024,71058 via svnmerge from by Georg Brandl · 15 years ago
  14. db26f7c Issue 3611: in some cases (a __del__ re-raising an exception, when called from inside by Amaury Forgeot d'Arc · 16 years ago
  15. ec569b7 Issue #2534: speed up isinstance() and issubclass() by 50-70%, so as to by Antoine Pitrou · 16 years ago
  16. 4cc0f24 Rename PyUnicode_AsString -> _PyUnicode_AsString and by Marc-André Lemburg · 16 years ago
  17. e19cadb Correct one of the "MemoryError oddities": by Amaury Forgeot d'Arc · 16 years ago
  18. 69c88f7 Merged revisions 65320 via svnmerge from by Benjamin Peterson · 16 years ago
  19. e652821 implement chained exception tracebacks by Benjamin Peterson · 16 years ago
  20. b4fb6e4 Implicit exception chaining via __context__ (PEP 3134). by Guido van Rossum · 16 years ago
  21. 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
  22. 072c0f1 Merged revisions 59666-59679 via svnmerge from by Christian Heimes · 17 years ago
  23. 217cfd1 Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h by Christian Heimes · 17 years ago
  24. 1a3284e #1535: rename __builtin__ module to builtins. by Georg Brandl · 17 years ago
  25. 2be0373 Added some additional checks for sys.std?? is None, see #1440 by Christian Heimes · 17 years ago
  26. e845c0f Fixes for issue 1752184, ensuring type objects are always created by Guido van Rossum · 17 years ago
  27. ebe8f8a Minor cleanup of the comment for PyErr_ProgramText() and a tweak to the code by Guido van Rossum · 17 years ago
  28. 89d996e Merged revisions 57778-58052 via svnmerge from by Thomas Wouters · 17 years ago
  29. 5d12abe Patch #1075: Use wide API to format error messages. by Martin v. Löwis · 17 years ago
  30. b382b84 Add const to some strings that are not modified by Neal Norwitz · 17 years ago
  31. cd79596 Use unicode for much of errors. by Neal Norwitz · 17 years ago
  32. 46fc337 PyErr_Warn is deprecated in 2.5 - goes away for 3.0 by Skip Montanaro · 17 years ago
  33. 307fa8c Three patches by Amaury Forgeot d'Arc; SF patch# 1754484. by Guido van Rossum · 17 years ago
  34. ace8ba8 Revert a wrong commit. by Thomas Heller · 17 years ago
  35. f630dac Must create heaptypes with unicode names. by Thomas Heller · 17 years ago
  36. 573c08c Change PyErr_Format() to generate a unicode string (by using by Walter Dörwald · 17 years ago
  37. 1ab8330 Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror by Walter Dörwald · 17 years ago
  38. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  39. 2633c69 Remove the exceptions builtin module, all the exceptions are already builtin. by Neal Norwitz · 17 years ago
  40. 902d6eb Merged revisions 53005-53303 via svnmerge from by Thomas Wouters · 18 years ago
  41. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  42. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  43. 4d70c3d Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn by Thomas Wouters · 18 years ago
  44. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago
  45. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  46. 303de6a Fix (and add test for) missing check for BaseException subclasses in the C API. by Thomas Wouters · 18 years ago
  47. 45aecf4 Checkpoint. 218 tests are okay; 53 are failing. Done so far: by Guido van Rossum · 18 years ago
  48. bf36409 PEP 352 implementation. Creates a new base class, BaseException, which has an by Brett Cannon · 18 years ago
  49. 1a5e21e Updates to the with-statement: by Guido van Rossum · 18 years ago
  50. a7444f4 PyErr_ProgramText(): Grrrrrr. by Tim Peters · 18 years ago
  51. d96ee90 Use Py_ssize_t to count the by Martin v. Löwis · 18 years ago
  52. 969f485 -X died some time ago; remove a tiny bit of associated cruft. by Michael W. Hudson · 20 years ago
  53. e5662ae Changed random calls to PyThreadState_Get() to use the macro by Nicholas Bastin · 20 years ago
  54. eddc144 Getting rid of all the code inside #ifdef macintosh too. by Jack Jansen · 21 years ago
  55. 092381a Made function declaration a proper C prototype by Armin Rigo · 21 years ago
  56. 8ae4689 Simplify and speedup uses of Py_BuildValue(): by Raymond Hettinger · 21 years ago
  57. edd0773 Fix [ 771097 ] frozen programs fail due to implicit import of "warnings". by Mark Hammond · 21 years ago
  58. 6b3fffa PyErr_NormalizeException(): in the type==NULL test, we should simply by Guido van Rossum · 21 years ago
  59. a43fd0c Fix bug 683658 - PyErr_Warn may cause import deadlock. by Mark Hammond · 21 years ago
  60. 95292d6 Constify filenames and scripts. Fixes #651362. by Martin v. Löwis · 22 years ago
  61. 3d61a06 Fix [ 616716 ] Bug in PyErr_SetExcFromWindows by Mark Hammond · 22 years ago
  62. da7efaa Fix errors to pep277 checkin identified by Neal Norwitz. by Mark Hammond · 22 years ago
  63. c2e85bd Patch 594001: PEP 277 - Unicode file name support for Windows NT. by Mark Hammond · 22 years ago
  64. 085358a New functions for extension writers on Windows: by Thomas Heller · 22 years ago
  65. 6238d2b Patch #569753: Remove support for WIN16. by Martin v. Löwis · 22 years ago
  66. 7b8c754 Mass checkin of universal newline support. by Jack Jansen · 22 years ago
  67. 3484a18 Patch #494045: patches errno and stat to cope on plan9. by Martin v. Löwis · 22 years ago
  68. cfeb3b6 Patch #50002: Display line information for bad \x escapes: by Martin v. Löwis · 22 years ago
  69. c15c4f1 SF bug [#467265] Compile errors on SuSe Linux on IBM/s390. by Tim Peters · 23 years ago
  70. e2e2c9f PyErr_NormalizeException() by Jeremy Hylton · 23 years ago
  71. 876c8cb PyErr_Format(): Factor out most of this code into by Barry Warsaw · 23 years ago
  72. 024da35 PyErr_Occurred(): Use PyThreadState_GET(), which saves a tiny function call by Tim Peters · 23 years ago
  73. 2b6727b Use Py_CHARMASK for ctype macros. Fixes bug #232787. by Martin v. Löwis · 23 years ago
  74. 2fd4565 Add PyErr_WarnExplicit(), which calls warnings.warn_explicit(), with by Guido van Rossum · 23 years ago
  75. ad3d3f2 Improve SyntaxErrors for bad future statements. Set file and location by Jeremy Hylton · 23 years ago
  76. cfd42b5 Add PyErr_Warn(). by Guido van Rossum · 24 years ago
  77. 661ea26 Ka-Ping Yee <ping@lfw.org>: by Fred Drake · 24 years ago
  78. e693df9 Avoid a couple of "value computed is not used" warnings from gcc -Wall; by Fred Drake · 24 years ago
  79. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  80. b69a27e code part of patch #100895 by Fredrik Lundh by Jeremy Hylton · 24 years ago
  81. b709df3 refactor __del__ exception handler into PyErr_WriteUnraisable by Jeremy Hylton · 24 years ago
  82. 6d63adf Improve the exceptions raised by PyErr_BadInternalCall(); adding the by Fred Drake · 24 years ago
  83. 0888ff1 Do not set a MemoryError exception over another MemoryError exception, by Vladimir Marangozov · 24 years ago
  84. ed473a4 Avoid dumping core when PyErr_NormalizeException() is called without by Guido van Rossum · 24 years ago
  85. f70ef4f Mass ANSIfication of function definitions. Doesn't cover all 'extern' by Thomas Wouters · 24 years ago
  86. 6980dff delete obsolete SYMANTEC__CFM68K__ #ifdefs by Skip Montanaro · 24 years ago
  87. dbd9ba6 Nuke all remaining occurrences of Py_PROTO and Py_FPROTO. by Tim Peters · 24 years ago
  88. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
  89. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  90. fa5c315 PyErr_GivenExceptionMatches(): Check for err==NULL and exc==NULL and by Barry Warsaw · 24 years ago
  91. 0b55670 Mark discovered a bug in his patch: he didn't *use* PyExc_WindowsError by Guido van Rossum · 24 years ago
  92. 584b16a Mark pointed out a buglet in his patch: i < _sys_nerr isn't strong by Guido van Rossum · 24 years ago
  93. 795e189 Patch by Mark Hammond: by Guido van Rossum · 24 years ago
  94. 743007d Patch by Christian Tismer for Win32, to use FormatMessage() instead of by Guido van Rossum · 25 years ago
  95. 885553e Use PyThreadState_GET() macro. by Guido van Rossum · 26 years ago
  96. e0e5982 When errno is zero, avoid calling strerror() and use "Error" for the message. by Guido van Rossum · 26 years ago
  97. 97d9515 PyErr_SetFromErrnoWithFilename(): New function which supports setting by Barry Warsaw · 26 years ago
  98. 19b55f2 Fix subtle bug in cleanup code in PyErr_NormalizeException(), detected by Guido van Rossum · 27 years ago
  99. 2ac650f New version of PyErr_NewException() that is compatible with -X option. by Guido van Rossum · 27 years ago
  100. 3a74993 PyErr_NormalizeException(): If the exception's type is a class and the by Barry Warsaw · 27 years ago