1. c15c4f1 SF bug [#467265] Compile errors on SuSe Linux on IBM/s390. by Tim Peters · 23 years ago
  2. e2e2c9f PyErr_NormalizeException() by Jeremy Hylton · 23 years ago
  3. 876c8cb PyErr_Format(): Factor out most of this code into by Barry Warsaw · 23 years ago
  4. 024da35 PyErr_Occurred(): Use PyThreadState_GET(), which saves a tiny function call by Tim Peters · 23 years ago
  5. 2b6727b Use Py_CHARMASK for ctype macros. Fixes bug #232787. by Martin v. Löwis · 23 years ago
  6. 2fd4565 Add PyErr_WarnExplicit(), which calls warnings.warn_explicit(), with by Guido van Rossum · 23 years ago
  7. ad3d3f2 Improve SyntaxErrors for bad future statements. Set file and location by Jeremy Hylton · 23 years ago
  8. cfd42b5 Add PyErr_Warn(). by Guido van Rossum · 24 years ago
  9. 661ea26 Ka-Ping Yee <ping@lfw.org>: by Fred Drake · 24 years ago
  10. e693df9 Avoid a couple of "value computed is not used" warnings from gcc -Wall; by Fred Drake · 24 years ago
  11. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  12. b69a27e code part of patch #100895 by Fredrik Lundh by Jeremy Hylton · 24 years ago
  13. b709df3 refactor __del__ exception handler into PyErr_WriteUnraisable by Jeremy Hylton · 24 years ago
  14. 6d63adf Improve the exceptions raised by PyErr_BadInternalCall(); adding the by Fred Drake · 24 years ago
  15. 0888ff1 Do not set a MemoryError exception over another MemoryError exception, by Vladimir Marangozov · 24 years ago
  16. ed473a4 Avoid dumping core when PyErr_NormalizeException() is called without by Guido van Rossum · 24 years ago
  17. f70ef4f Mass ANSIfication of function definitions. Doesn't cover all 'extern' by Thomas Wouters · 24 years ago
  18. 6980dff delete obsolete SYMANTEC__CFM68K__ #ifdefs by Skip Montanaro · 24 years ago
  19. dbd9ba6 Nuke all remaining occurrences of Py_PROTO and Py_FPROTO. by Tim Peters · 24 years ago
  20. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
  21. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  22. fa5c315 PyErr_GivenExceptionMatches(): Check for err==NULL and exc==NULL and by Barry Warsaw · 24 years ago
  23. 0b55670 Mark discovered a bug in his patch: he didn't *use* PyExc_WindowsError by Guido van Rossum · 24 years ago
  24. 584b16a Mark pointed out a buglet in his patch: i < _sys_nerr isn't strong by Guido van Rossum · 24 years ago
  25. 795e189 Patch by Mark Hammond: by Guido van Rossum · 24 years ago
  26. 743007d Patch by Christian Tismer for Win32, to use FormatMessage() instead of by Guido van Rossum · 25 years ago
  27. 885553e Use PyThreadState_GET() macro. by Guido van Rossum · 26 years ago
  28. e0e5982 When errno is zero, avoid calling strerror() and use "Error" for the message. by Guido van Rossum · 26 years ago
  29. 97d9515 PyErr_SetFromErrnoWithFilename(): New function which supports setting by Barry Warsaw · 26 years ago
  30. 19b55f2 Fix subtle bug in cleanup code in PyErr_NormalizeException(), detected by Guido van Rossum · 27 years ago
  31. 2ac650f New version of PyErr_NewException() that is compatible with -X option. by Guido van Rossum · 27 years ago
  32. 3a74993 PyErr_NormalizeException(): If the exception's type is a class and the by Barry Warsaw · 27 years ago
  33. 7617e05 New API PyErr_NewException(name, base, dict) to create simple new exceptions. by Guido van Rossum · 27 years ago
  34. 2d8adff PyErr_NoMemory(): If the pre-instantiated memory exception is non-null by Barry Warsaw · 27 years ago
  35. c0dc92a Three new C API functions: by Barry Warsaw · 27 years ago
  36. e5b4026 Use strerror on the mac if using MSL (Jack). by Guido van Rossum · 27 years ago
  37. a027efa Massive changes for separate thread state management. by Guido van Rossum · 27 years ago
  38. 373c869 Quickly renamed. Also removed the long comment explaining why this is by Guido van Rossum · 27 years ago
  39. 7844e38 Keep Microsoft VC happy. by Guido van Rossum · 27 years ago
  40. 6976a52 (Jack:) On the Mac, use standard strerror() if using MSL C-library. by Guido van Rossum · 27 years ago
  41. 2dc4661 Oops, remove an unused variable from PyErr_Format(). by Guido van Rossum · 27 years ago
  42. 1548bac Added convenience function PyErr_Format(exception, formatstring, ...) -> NULL. by Guido van Rossum · 27 years ago
  43. 067998f Add const to error and newstring functions by Guido van Rossum · 28 years ago
  44. d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
  45. 650ae0a remove unwanted fatal() from err_badcall() by Guido van Rossum · 29 years ago
  46. 69f6ee6 err_badcall() is fatal error by Guido van Rossum · 29 years ago
  47. eceb3e3 Porting to CW CFM68K by Jack Jansen · 29 years ago
  48. 53e8d44 changes in NT tests by Guido van Rossum · 29 years ago
  49. e9fbc09 rename macstrerror to PyMac_StrError; no EINTR test in CW by Guido van Rossum · 29 years ago
  50. 5ef86d5 Undef strerror on the mac before redefining it by Jack Jansen · 29 years ago
  51. 6d023c9 Added 1995 to copyright message. by Guido van Rossum · 30 years ago
  52. 1ae940a Lots of changes, most minor (fatal() instead of abort(), use of by Guido van Rossum · 30 years ago
  53. 8fd2d94 Added hook for better mac error messages. by Jack Jansen · 30 years ago
  54. c054a66 call err_clear in err_setval by Guido van Rossum · 30 years ago
  55. 6989e54 * Python/errors.c (err_clear): clear interpreter stack trace by Guido van Rossum · 30 years ago
  56. 3a24181 err_clear: clear interpreter stack trace by Guido van Rossum · 30 years ago
  57. f1dc566 * Makefile: added all: and default: targets. by Guido van Rossum · 31 years ago
  58. e537240 * Changed many files to use mkvalue() instead of newtupleobject(). by Guido van Rossum · 31 years ago
  59. bab9d03 Copyright for 1992 added by Guido van Rossum · 32 years ago
  60. c488400 EOF in source is a SyntaxError, not an EOFError. by Guido van Rossum · 32 years ago
  61. 86d8e63 EOF while parsing should raise EOFError, not SyntaxError. by Guido van Rossum · 33 years ago
  62. b954c2c Use SyntaxError. by Guido van Rossum · 33 years ago
  63. 87e7ea7 Use new exceptions. by Guido van Rossum · 33 years ago
  64. 5063bab Check for EINTR and turn it into KeyboardInterrupt in err_errno(). by Guido van Rossum · 33 years ago
  65. f70e43a Added copyright notice. by Guido van Rossum · 33 years ago
  66. f22120a Changed include of <errno.h> by Guido van Rossum · 34 years ago
  67. 3f5da24 "Compiling" version by Guido van Rossum · 34 years ago
  68. f1ac403 Reformulated err_badarg error message. by Guido van Rossum · 34 years ago
  69. f5401bd Added prototype for strerror. by Guido van Rossum · 34 years ago
  70. 17e66f6 Added intobject.h and tupleobject.h includes. by Guido van Rossum · 34 years ago
  71. 683a072 Added err_badcall(). by Guido van Rossum · 34 years ago
  72. 7d310eb Adde dconvenience functions. by Guido van Rossum · 34 years ago
  73. 85a5fbb Initial revision by Guido van Rossum · 34 years ago