aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Python/exceptions.c
Commit message (Expand)AuthorAge
* Simplify and speedup uses of Py_BuildValue():Raymond Hettinger2003-10-12
* Fix refcount leak in the UnicodeError constructor:Walter Dörwald2003-08-14
* Add a unicode prefix to the characters in the UnicodeEncodeError andWalter Dörwald2003-08-12
* Enhance message for UnicodeEncodeError and UnicodeTranslateError.Walter Dörwald2003-08-12
* Remove unused variables.Walter Dörwald2003-02-24
* Provide __module__ attributes for functions defined in C and Python.Jeremy Hylton2003-01-31
* Patch #614055: Support OpenVMS.Martin v. Löwis2002-12-06
* Fix PEP 293 related problems with --disable-unicode buildsWalter Dörwald2002-11-21
* Two more cases of switch(PySequence_Size()) without checking for case -1.Neal Norwitz2002-09-18
* Fix SF bug 610610 (reported by Martijn Pieters, diagnosed by Neal Norwitz).Guido van Rossum2002-09-18
* Add a custom __str__ method to KeyError that applies repr() to theGuido van Rossum2002-09-03
* Removed bogus PyUnicodeTranslateError_GetEncoding, asWalter Dörwald2002-09-02
* Limit the length of attribute names in exception messagesWalter Dörwald2002-09-02
* PEP 293 implemention (from SF patch http://www.python.org/sf/432401)Walter Dörwald2002-09-02
* Added a FutureWarning for constructs that will change semantically inBarry Warsaw2002-08-14
* Excise DL_IMPORT/EXPORT from object.h, and related files. This patchMark Hammond2002-07-29
* Patch #568124: Add doc string macros.Martin v. Löwis2002-06-13
* As discussed on python-dev, add a mechanism to indicate featuresNeal Norwitz2002-05-29
* add comment reminding people about class hierarchy in Doc/lib/libexcs.texSkip Montanaro2002-03-28
* Patch #50002: Display line information for bad \x escapes:Martin v. Löwis2002-03-03
* Use PyOS_snprintf instead of sprintf.Jeremy Hylton2001-11-28
* weakref.ReferenceError becomes a built-in exception now that weak ref objectsFred Drake2001-10-05
* Introduce OverflowWarning -- to be issued when short int operationsGuido van Rossum2001-08-23
* Merge of descr-branch back into trunk.Tim Peters2001-08-02
* Iterators phase 1. This comprises:Guido van Rossum2001-04-20
* Make some private symbols static.Guido van Rossum2001-04-14
* SyntaxError__init__(): Be a little more robust when picking apart theFred Drake2001-02-28
* SF patch 404928: Support for next Cygwin gcc (2.95.2-8)Tim Peters2001-02-28
* Leak pluggin', bug fixin' and better documentin'. Specifically,Barry Warsaw2001-01-23
* Add definitions for standard warning category classes (PyExc_WarningGuido van Rossum2000-12-15
* Ka-Ping Yee <ping@lfw.org>:Fred Drake2000-10-24
* Remove a couple of warnings turned up by "gcc -Wall".Fred Drake2000-08-18
* SyntaxError__classinit__(): Slight reorg for simplicity.Barry Warsaw2000-08-18
* SyntaxError__str__(): Fix two memory problems discovered by Insure.Barry Warsaw2000-08-16
* my_basename(): Removes the leading path components from a path name,Fred Drake2000-08-15
* SyntaxError__str__(): Do more formatting of the exception here, ratherFred Drake2000-08-15
* Fix the parent of WindowsError - both the comments in this source file, and t...Mark Hammond2000-08-15
* Fix two instances of empty argument lists, and fix styleThomas Wouters2000-07-22
* Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in eitherThomas Wouters2000-07-16
* replace PyXXX_Length calls with PyXXX_Size callsJeremy Hylton2000-07-12
* Worm around MSVC6 error on single string literal > 2Kb.Tim Peters2000-07-12
* Create two new exceptions: IndentationError and TabError. These areFred Drake2000-07-11
* Exception__str__(): In case 1, be sure to decref the tmp localBarry Warsaw2000-07-09
* EnvironmentError__init__(): The two case clauses were missingBarry Warsaw2000-07-09
* init_exceptions(): Decref `doc' so it doesn't leak.Barry Warsaw2000-07-01
* replace constant 1 with symbolic constant METH_VARARGSJeremy Hylton2000-06-30
* mark SyntaxError__str__ as METH_VARARGSJeremy Hylton2000-06-20
* The standard exception classes. Moved here from ../Modules/_exceptions.cBarry Warsaw2000-05-26