- 95292d6 Constify filenames and scripts. Fixes #651362. by Martin v. Löwis · 22 years ago
- 79acb9e Patch #614055: Support OpenVMS. by Martin v. Löwis · 22 years ago
- bf73db8 Fix PEP 293 related problems with --disable-unicode builds by Walter Dörwald · 22 years ago
- c2e85bd Patch 594001: PEP 277 - Unicode file name support for Windows NT. by Mark Hammond · 22 years ago
- 96aa0ac Use Py_GCC_ATTRIBUTE instead of __attribute__. Compilers other than GCC by Neil Schemenauer · 22 years ago
- 70bb0d4 Removed bogus PyUnicodeTranslateError_GetEncoding, as by Walter Dörwald · 22 years ago
- 3aeb632 PEP 293 implemention (from SF patch http://www.python.org/sf/432401) by Walter Dörwald · 22 years ago
- 9f00739 Added a FutureWarning for constructs that will change semantically in by Barry Warsaw · 22 years ago
- 91a681d Excise DL_EXPORT from Include. by Mark Hammond · 22 years ago
- 085358a New functions for extension writers on Windows: by Thomas Heller · 22 years ago
- d68f517 As discussed on python-dev, add a mechanism to indicate features by Neal Norwitz · 22 years ago
- faad5ad mysnprintf.c: Massive rewrite of PyOS_snprintf and PyOS_vsnprintf, to by Tim Peters · 23 years ago
- a437d45 Removed preprocessor gimmick trying to force use of snprintf emulation by Tim Peters · 23 years ago
- 90b6890 Add function attributes that allow GCC to check the arguments of printf-like by Neil Schemenauer · 23 years ago
- bb9fa21 weakref.ReferenceError becomes a built-in exception now that weak ref objects by Fred Drake · 23 years ago
- ae347b3 Introduce OverflowWarning -- to be issued when short int operations by Guido van Rossum · 23 years ago
- 03d1b18 Enable PyOS_snprintf() et al. during alpha phase of 2.2.0 and by Marc-André Lemburg · 23 years ago
- cecd9e0 va_list is defined in stdarg.h. by Marc-André Lemburg · 23 years ago
- e5006eb This patch turns the Python API mismatch notice into a standard by Marc-André Lemburg · 23 years ago
- 59d1d2b Iterators phase 1. This comprises: by Guido van Rossum · 24 years ago
- 1bcb7e9 Add declaration for PyErr_WarnExplicit(). by Guido van Rossum · 24 years ago
- ad3d3f2 Improve SyntaxErrors for bad future statements. Set file and location by Jeremy Hylton · 24 years ago
- 3fc3037 Add declarations for standard warning category classes (PyExc_Warning by Guido van Rossum · 24 years ago
- 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
- b709df3 refactor __del__ exception handler into PyErr_WriteUnraisable by Jeremy Hylton · 24 years ago
- 6d63adf Improve the exceptions raised by PyErr_BadInternalCall(); adding the by Fred Drake · 24 years ago
- d5c84ed ANSI-fication of the sources -- remove Py_PROTO! by Fred Drake · 24 years ago
- ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
- fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
- 99cc971 Marc-Andre Lemburg: add PyExc_UnicodeError by Guido van Rossum · 25 years ago
- db0c9f7 Declarations related to new WindowsError exception. by Guido van Rossum · 25 years ago
- 8746082 Patch by Tim Peters: by Guido van Rossum · 25 years ago
- 43466ec Add DL_IMPORT(returntype) for all officially exported functions. by Guido van Rossum · 26 years ago
- d052ff0 Added PyExc_NotImplementedError by Barry Warsaw · 26 years ago
- 62a21a2 New global variables: PyExc_EnvironmentError and PyExc_OSError by Barry Warsaw · 26 years ago
- 2d2c344 New API PyErr_NewException(name, base, dict) to create simple new exceptions. by Guido van Rossum · 27 years ago
- 65349a3 [Py_Exc]NumberError => [Py_Exc]ArithmeticError by Barry Warsaw · 27 years ago
- 0474832 Introduce PyExc_Exception as the conceptual root class for all exceptions. by Guido van Rossum · 27 years ago
- 392d827 Added externs for three new exceptions PyExc_StandardError, by Barry Warsaw · 27 years ago
- c0dc92a Three new C API functions: by Barry Warsaw · 27 years ago
- 6fa4466 Added AssertionError. by Guido van Rossum · 28 years ago
- 94dbd99 Remove ConflictError (which was also removed from bltinmodule.c, even by Guido van Rossum · 28 years ago
- 7d4266e Changes for Lee Busby's SIGFPE patch set. by Guido van Rossum · 28 years ago
- c4193f1 Added prototype for PyErr_Format(exception, formatstring, ...) -> NULL. by Guido van Rossum · 28 years ago
- f3f41a9 Added declaration for PyErr_SetInterrupt. by Barry Warsaw · 28 years ago
- 067998f Add const to error and newstring functions by Guido van Rossum · 28 years ago
- d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
- 051ab12 make the type a parameter of the DL_IMPORT macro, for Borland C by Guido van Rossum · 30 years ago
- 9381782 new names for lots of new functions by Guido van Rossum · 30 years ago
- caa6380 The great renaming, phase two: all header files have been updated to by Guido van Rossum · 30 years ago
- 5799b52 Added 1995 copyright. by Guido van Rossum · 30 years ago
- 66cb311 Lots of small things, see ChangeLog by Guido van Rossum · 30 years ago
- e89bc75 Changes for dynamic linking under NT by Guido van Rossum · 30 years ago
- b6775db Merge alpha100 branch back to main trunk by Guido van Rossum · 30 years ago
- a330996 * Added support for X11 modules. by Guido van Rossum · 31 years ago
- 2583165 Several changes in one: by Guido van Rossum · 31 years ago
- 9bfef44 * Changed all copyright messages to include 1993. by Guido van Rossum · 32 years ago
- 5113f5f Copyright for 1992 added by Guido van Rossum · 33 years ago
- 768a3f0 Added SystemExit. by Guido van Rossum · 33 years ago
- 85fc392 Added ImportError. by Guido van Rossum · 33 years ago
- fb905c3 Regularize exceptions. by Guido van Rossum · 33 years ago
- a317365 SyntaxError. by Guido van Rossum · 33 years ago
- 876336b New exceptions. by Guido van Rossum · 33 years ago
- f70e43a Added copyright notice. by Guido van Rossum · 34 years ago
- 3f5da24 "Compiling" version by Guido van Rossum · 34 years ago
- 3e55cb6 Added err_badcall() and planned new errors. by Guido van Rossum · 34 years ago
- 5c600e1 Made exception objects extern. Added convenience functions. by Guido van Rossum · 34 years ago
- 85a5fbb Initial revision by Guido van Rossum · 34 years ago