1. 040f76b Slightly revised version of patch #1538956: by Marc-André Lemburg · 18 years ago
  2. 07aadb1 Add PyErr_WarnEx() so C code can pass the stacklevel to warnings.warn(). by Neal Norwitz · 18 years ago
  3. 7b9558d Conversion of exceptions over from faked-up classes to new-style C types. by Richard Jones · 18 years ago
  4. 9df4e6f - Add new Warning class, ImportWarning by Thomas Wouters · 18 years ago
  5. bf36409 PEP 352 implementation. Creates a new base class, BaseException, which has an by Brett Cannon · 18 years ago
  6. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  7. 5ba0cbe * set_new() doesn't need to zero the structure a second time after tp_alloc by Raymond Hettinger · 19 years ago
  8. 0d6615f PEP 342 implementation. Per Guido's comments, the generator throw() by Phillip J. Eby · 19 years ago
  9. c885443 Stop producing or using OverflowWarning. PEP 237 thought this would by Tim Peters · 20 years ago
  10. 21d896c Use appropriate macros not the deprecated DL_IMPORT/DL_EXPORT macros by Neal Norwitz · 21 years ago
  11. 95292d6 Constify filenames and scripts. Fixes #651362. by Martin v. Löwis · 22 years ago
  12. 79acb9e Patch #614055: Support OpenVMS. by Martin v. Löwis · 22 years ago
  13. bf73db8 Fix PEP 293 related problems with --disable-unicode builds by Walter Dörwald · 22 years ago
  14. c2e85bd Patch 594001: PEP 277 - Unicode file name support for Windows NT. by Mark Hammond · 22 years ago
  15. 96aa0ac Use Py_GCC_ATTRIBUTE instead of __attribute__. Compilers other than GCC by Neil Schemenauer · 22 years ago
  16. 70bb0d4 Removed bogus PyUnicodeTranslateError_GetEncoding, as by Walter Dörwald · 22 years ago
  17. 3aeb632 PEP 293 implemention (from SF patch http://www.python.org/sf/432401) by Walter Dörwald · 22 years ago
  18. 9f00739 Added a FutureWarning for constructs that will change semantically in by Barry Warsaw · 22 years ago
  19. 91a681d Excise DL_EXPORT from Include. by Mark Hammond · 22 years ago
  20. 085358a New functions for extension writers on Windows: by Thomas Heller · 22 years ago
  21. d68f517 As discussed on python-dev, add a mechanism to indicate features by Neal Norwitz · 22 years ago
  22. faad5ad mysnprintf.c: Massive rewrite of PyOS_snprintf and PyOS_vsnprintf, to by Tim Peters · 23 years ago
  23. a437d45 Removed preprocessor gimmick trying to force use of snprintf emulation by Tim Peters · 23 years ago
  24. 90b6890 Add function attributes that allow GCC to check the arguments of printf-like by Neil Schemenauer · 23 years ago
  25. bb9fa21 weakref.ReferenceError becomes a built-in exception now that weak ref objects by Fred Drake · 23 years ago
  26. ae347b3 Introduce OverflowWarning -- to be issued when short int operations by Guido van Rossum · 23 years ago
  27. 03d1b18 Enable PyOS_snprintf() et al. during alpha phase of 2.2.0 and by Marc-André Lemburg · 23 years ago
  28. cecd9e0 va_list is defined in stdarg.h. by Marc-André Lemburg · 23 years ago
  29. e5006eb This patch turns the Python API mismatch notice into a standard by Marc-André Lemburg · 23 years ago
  30. 59d1d2b Iterators phase 1. This comprises: by Guido van Rossum · 23 years ago
  31. 1bcb7e9 Add declaration for PyErr_WarnExplicit(). by Guido van Rossum · 23 years ago
  32. ad3d3f2 Improve SyntaxErrors for bad future statements. Set file and location by Jeremy Hylton · 23 years ago
  33. 3fc3037 Add declarations for standard warning category classes (PyExc_Warning by Guido van Rossum · 24 years ago
  34. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  35. b709df3 refactor __del__ exception handler into PyErr_WriteUnraisable by Jeremy Hylton · 24 years ago
  36. 6d63adf Improve the exceptions raised by PyErr_BadInternalCall(); adding the by Fred Drake · 24 years ago
  37. d5c84ed ANSI-fication of the sources -- remove Py_PROTO! by Fred Drake · 24 years ago
  38. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
  39. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  40. 99cc971 Marc-Andre Lemburg: add PyExc_UnicodeError by Guido van Rossum · 24 years ago
  41. db0c9f7 Declarations related to new WindowsError exception. by Guido van Rossum · 24 years ago
  42. 8746082 Patch by Tim Peters: by Guido van Rossum · 25 years ago
  43. 43466ec Add DL_IMPORT(returntype) for all officially exported functions. by Guido van Rossum · 26 years ago
  44. d052ff0 Added PyExc_NotImplementedError by Barry Warsaw · 26 years ago
  45. 62a21a2 New global variables: PyExc_EnvironmentError and PyExc_OSError by Barry Warsaw · 26 years ago
  46. 2d2c344 New API PyErr_NewException(name, base, dict) to create simple new exceptions. by Guido van Rossum · 27 years ago
  47. 65349a3 [Py_Exc]NumberError => [Py_Exc]ArithmeticError by Barry Warsaw · 27 years ago
  48. 0474832 Introduce PyExc_Exception as the conceptual root class for all exceptions. by Guido van Rossum · 27 years ago
  49. 392d827 Added externs for three new exceptions PyExc_StandardError, by Barry Warsaw · 27 years ago
  50. c0dc92a Three new C API functions: by Barry Warsaw · 27 years ago
  51. 6fa4466 Added AssertionError. by Guido van Rossum · 27 years ago
  52. 94dbd99 Remove ConflictError (which was also removed from bltinmodule.c, even by Guido van Rossum · 27 years ago
  53. 7d4266e Changes for Lee Busby's SIGFPE patch set. by Guido van Rossum · 27 years ago
  54. c4193f1 Added prototype for PyErr_Format(exception, formatstring, ...) -> NULL. by Guido van Rossum · 27 years ago
  55. f3f41a9 Added declaration for PyErr_SetInterrupt. by Barry Warsaw · 28 years ago
  56. 067998f Add const to error and newstring functions by Guido van Rossum · 28 years ago
  57. d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
  58. 051ab12 make the type a parameter of the DL_IMPORT macro, for Borland C by Guido van Rossum · 29 years ago
  59. 9381782 new names for lots of new functions by Guido van Rossum · 30 years ago
  60. caa6380 The great renaming, phase two: all header files have been updated to by Guido van Rossum · 30 years ago
  61. 5799b52 Added 1995 copyright. by Guido van Rossum · 30 years ago
  62. 66cb311 Lots of small things, see ChangeLog by Guido van Rossum · 30 years ago
  63. e89bc75 Changes for dynamic linking under NT by Guido van Rossum · 30 years ago
  64. b6775db Merge alpha100 branch back to main trunk by Guido van Rossum · 30 years ago
  65. a330996 * Added support for X11 modules. by Guido van Rossum · 31 years ago
  66. 2583165 Several changes in one: by Guido van Rossum · 31 years ago
  67. 9bfef44 * Changed all copyright messages to include 1993. by Guido van Rossum · 31 years ago
  68. 5113f5f Copyright for 1992 added by Guido van Rossum · 32 years ago
  69. 768a3f0 Added SystemExit. by Guido van Rossum · 33 years ago
  70. 85fc392 Added ImportError. by Guido van Rossum · 33 years ago
  71. fb905c3 Regularize exceptions. by Guido van Rossum · 33 years ago
  72. a317365 SyntaxError. by Guido van Rossum · 33 years ago
  73. 876336b New exceptions. by Guido van Rossum · 33 years ago
  74. f70e43a Added copyright notice. by Guido van Rossum · 33 years ago
  75. 3f5da24 "Compiling" version by Guido van Rossum · 34 years ago
  76. 3e55cb6 Added err_badcall() and planned new errors. by Guido van Rossum · 34 years ago
  77. 5c600e1 Made exception objects extern. Added convenience functions. by Guido van Rossum · 34 years ago
  78. 85a5fbb Initial revision by Guido van Rossum · 34 years ago