1. 4d0d471 Merge branches/pep-0384. by Martin v. Löwis · 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. 257d38f Issue #9738: Document PyErr_SetString() and PyErr_SetFromErrnoWithFilename() by Victor Stinner · 14 years ago
  5. 2c53971 add PyErr_SyntaxLocationEx, to support adding a column offset by Benjamin Peterson · 14 years ago
  6. 1205f27 Issue #9738: PyUnicode_FromFormat() and PyErr_Format() raise an error on by Victor Stinner · 14 years ago
  7. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  8. 1e28a27 Merged revisions 77088 via svnmerge from by Georg Brandl · 15 years ago
  9. 78565b2 Merged revisions 73376,73393,73398,73400,73404-73405,73409,73419-73421,73432,73457,73460,73485-73486,73488-73489,73501-73502,73513-73514 via svnmerge from by Benjamin Peterson · 15 years ago
  10. 8223c24 Merged revisions 72698-72699 via svnmerge from by Hirokazu Yamamoto · 15 years ago
  11. 1456778 remove duplicate definition of PyExc_BufferError #4950 by Benjamin Peterson · 15 years ago
  12. 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
  13. b186d00 Merged revisions 61431,61433-61436,61439,61444,61449-61450,61453,61458,61465,61468,61471-61474,61480,61483-61484,61488,61495-61496,61498,61503-61504,61507,61509-61510,61515-61518 via svnmerge from by Christian Heimes · 16 years ago
  14. 5fb7c2a Merged revisions 59565-59594 via svnmerge from by Christian Heimes · 17 years ago
  15. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  16. 89d996e Merged revisions 57778-58052 via svnmerge from by Thomas Wouters · 17 years ago
  17. 231ff0e Fix a compile error on Windows. by Collin Winter · 17 years ago
  18. 828f04a Issue #1066: implement PEP 3109, 2/3 of PEP 3134. by Collin Winter · 17 years ago
  19. b382b84 Add const to some strings that are not modified by Neal Norwitz · 17 years ago
  20. b99f762 Merged in py3k-buffer branch to main line. All objects now use the buffer protocol in PEP 3118. by Travis E. Oliphant · 17 years ago
  21. 46fc337 PyErr_Warn is deprecated in 2.5 - goes away for 3.0 by Skip Montanaro · 17 years ago
  22. 7eaf822 Merged revisions 55962-56019 via svnmerge from by Guido van Rossum · 17 years ago
  23. cd16bf6 Merged revisions 55817-55961 via svnmerge from by Guido van Rossum · 17 years ago
  24. 573c08c Change PyErr_Format() to generate a unicode string (by using by Walter Dörwald · 17 years ago
  25. ebe3e16 Merged revisions 55342-55406 via svnmerge from by Guido van Rossum · 17 years ago
  26. 8d30cc0 Get rid of all #ifdef Py_USING_UNICODE (it is always present now). by Guido van Rossum · 17 years ago
  27. 27d517b Merged revisions 53875-53911 via svnmerge from by Thomas Wouters · 17 years ago
  28. 00ee7ba Merge current trunk into p3yk. This includes the PyNumber_Index API change, by Thomas Wouters · 18 years ago
  29. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  30. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago
  31. 45aecf4 Checkpoint. 218 tests are okay; 53 are failing. Done so far: by Guido van Rossum · 18 years ago
  32. bf36409 PEP 352 implementation. Creates a new base class, BaseException, which has an by Brett Cannon · 18 years ago
  33. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  34. 5ba0cbe * set_new() doesn't need to zero the structure a second time after tp_alloc by Raymond Hettinger · 19 years ago
  35. 0d6615f PEP 342 implementation. Per Guido's comments, the generator throw() by Phillip J. Eby · 19 years ago
  36. c885443 Stop producing or using OverflowWarning. PEP 237 thought this would by Tim Peters · 20 years ago
  37. 21d896c Use appropriate macros not the deprecated DL_IMPORT/DL_EXPORT macros by Neal Norwitz · 21 years ago
  38. 95292d6 Constify filenames and scripts. Fixes #651362. by Martin v. Löwis · 22 years ago
  39. 79acb9e Patch #614055: Support OpenVMS. by Martin v. Löwis · 22 years ago
  40. bf73db8 Fix PEP 293 related problems with --disable-unicode builds by Walter Dörwald · 22 years ago
  41. c2e85bd Patch 594001: PEP 277 - Unicode file name support for Windows NT. by Mark Hammond · 22 years ago
  42. 96aa0ac Use Py_GCC_ATTRIBUTE instead of __attribute__. Compilers other than GCC by Neil Schemenauer · 22 years ago
  43. 70bb0d4 Removed bogus PyUnicodeTranslateError_GetEncoding, as by Walter Dörwald · 22 years ago
  44. 3aeb632 PEP 293 implemention (from SF patch http://www.python.org/sf/432401) by Walter Dörwald · 22 years ago
  45. 9f00739 Added a FutureWarning for constructs that will change semantically in by Barry Warsaw · 22 years ago
  46. 91a681d Excise DL_EXPORT from Include. by Mark Hammond · 22 years ago
  47. 085358a New functions for extension writers on Windows: by Thomas Heller · 22 years ago
  48. d68f517 As discussed on python-dev, add a mechanism to indicate features by Neal Norwitz · 22 years ago
  49. faad5ad mysnprintf.c: Massive rewrite of PyOS_snprintf and PyOS_vsnprintf, to by Tim Peters · 23 years ago
  50. a437d45 Removed preprocessor gimmick trying to force use of snprintf emulation by Tim Peters · 23 years ago
  51. 90b6890 Add function attributes that allow GCC to check the arguments of printf-like by Neil Schemenauer · 23 years ago
  52. bb9fa21 weakref.ReferenceError becomes a built-in exception now that weak ref objects by Fred Drake · 23 years ago
  53. ae347b3 Introduce OverflowWarning -- to be issued when short int operations by Guido van Rossum · 23 years ago
  54. 03d1b18 Enable PyOS_snprintf() et al. during alpha phase of 2.2.0 and by Marc-André Lemburg · 23 years ago
  55. cecd9e0 va_list is defined in stdarg.h. by Marc-André Lemburg · 23 years ago
  56. e5006eb This patch turns the Python API mismatch notice into a standard by Marc-André Lemburg · 23 years ago
  57. 59d1d2b Iterators phase 1. This comprises: by Guido van Rossum · 23 years ago
  58. 1bcb7e9 Add declaration for PyErr_WarnExplicit(). by Guido van Rossum · 23 years ago
  59. ad3d3f2 Improve SyntaxErrors for bad future statements. Set file and location by Jeremy Hylton · 23 years ago
  60. 3fc3037 Add declarations for standard warning category classes (PyExc_Warning by Guido van Rossum · 24 years ago
  61. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  62. b709df3 refactor __del__ exception handler into PyErr_WriteUnraisable by Jeremy Hylton · 24 years ago
  63. 6d63adf Improve the exceptions raised by PyErr_BadInternalCall(); adding the by Fred Drake · 24 years ago
  64. d5c84ed ANSI-fication of the sources -- remove Py_PROTO! by Fred Drake · 24 years ago
  65. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
  66. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  67. 99cc971 Marc-Andre Lemburg: add PyExc_UnicodeError by Guido van Rossum · 24 years ago
  68. db0c9f7 Declarations related to new WindowsError exception. by Guido van Rossum · 24 years ago
  69. 8746082 Patch by Tim Peters: by Guido van Rossum · 25 years ago
  70. 43466ec Add DL_IMPORT(returntype) for all officially exported functions. by Guido van Rossum · 26 years ago
  71. d052ff0 Added PyExc_NotImplementedError by Barry Warsaw · 26 years ago
  72. 62a21a2 New global variables: PyExc_EnvironmentError and PyExc_OSError by Barry Warsaw · 26 years ago
  73. 2d2c344 New API PyErr_NewException(name, base, dict) to create simple new exceptions. by Guido van Rossum · 27 years ago
  74. 65349a3 [Py_Exc]NumberError => [Py_Exc]ArithmeticError by Barry Warsaw · 27 years ago
  75. 0474832 Introduce PyExc_Exception as the conceptual root class for all exceptions. by Guido van Rossum · 27 years ago
  76. 392d827 Added externs for three new exceptions PyExc_StandardError, by Barry Warsaw · 27 years ago
  77. c0dc92a Three new C API functions: by Barry Warsaw · 27 years ago
  78. 6fa4466 Added AssertionError. by Guido van Rossum · 27 years ago
  79. 94dbd99 Remove ConflictError (which was also removed from bltinmodule.c, even by Guido van Rossum · 27 years ago
  80. 7d4266e Changes for Lee Busby's SIGFPE patch set. by Guido van Rossum · 27 years ago
  81. c4193f1 Added prototype for PyErr_Format(exception, formatstring, ...) -> NULL. by Guido van Rossum · 27 years ago
  82. f3f41a9 Added declaration for PyErr_SetInterrupt. by Barry Warsaw · 28 years ago
  83. 067998f Add const to error and newstring functions by Guido van Rossum · 28 years ago
  84. d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
  85. 051ab12 make the type a parameter of the DL_IMPORT macro, for Borland C by Guido van Rossum · 29 years ago
  86. 9381782 new names for lots of new functions by Guido van Rossum · 29 years ago
  87. caa6380 The great renaming, phase two: all header files have been updated to by Guido van Rossum · 29 years ago
  88. 5799b52 Added 1995 copyright. by Guido van Rossum · 30 years ago
  89. 66cb311 Lots of small things, see ChangeLog by Guido van Rossum · 30 years ago
  90. e89bc75 Changes for dynamic linking under NT by Guido van Rossum · 30 years ago
  91. b6775db Merge alpha100 branch back to main trunk by Guido van Rossum · 30 years ago
  92. a330996 * Added support for X11 modules. by Guido van Rossum · 31 years ago
  93. 2583165 Several changes in one: by Guido van Rossum · 31 years ago
  94. 9bfef44 * Changed all copyright messages to include 1993. by Guido van Rossum · 31 years ago
  95. 5113f5f Copyright for 1992 added by Guido van Rossum · 32 years ago
  96. 768a3f0 Added SystemExit. by Guido van Rossum · 33 years ago
  97. 85fc392 Added ImportError. by Guido van Rossum · 33 years ago
  98. fb905c3 Regularize exceptions. by Guido van Rossum · 33 years ago
  99. a317365 SyntaxError. by Guido van Rossum · 33 years ago
  100. 876336b New exceptions. by Guido van Rossum · 33 years ago