COMMITS
/ Python/exceptions.c August 2, 2005
P
PEP 342 implementation. Per Guido's comments, the generator throw()
Phillip J. Eby committed
August 25, 2004
T
Stop producing or using OverflowWarning. PEP 237 thought this would
Tim Peters committed
October 12, 2003
R
Simplify and speedup uses of Py_BuildValue():
Raymond Hettinger committed
August 14, 2003
W
Fix refcount leak in the UnicodeError constructor:
Walter Dörwald committed
August 12, 2003
W
Add a unicode prefix to the characters in the UnicodeEncodeError and
Walter Dörwald committed
W
Enhance message for UnicodeEncodeError and UnicodeTranslateError.
Walter Dörwald committed
February 24, 2003
W
Remove unused variables.
Walter Dörwald committed
January 31, 2003
J
Provide __module__ attributes for functions defined in C and Python.
Jeremy Hylton committed
December 6, 2002
M
Patch #614055: Support OpenVMS.
Martin v. Löwis committed
November 21, 2002
W
Fix PEP 293 related problems with --disable-unicode builds
Walter Dörwald committed
September 18, 2002
N
Two more cases of switch(PySequence_Size()) without checking for case -1.
Neal Norwitz committed
G
Fix SF bug 610610 (reported by Martijn Pieters, diagnosed by Neal Norwitz).
Guido van Rossum committed
September 3, 2002
G
Add a custom __str__ method to KeyError that applies repr() to the
Guido van Rossum committed
September 2, 2002
W
Removed bogus PyUnicodeTranslateError_GetEncoding, as
Walter Dörwald committed
W
Limit the length of attribute names in exception messages
Walter Dörwald committed
W
PEP 293 implemention (from SF patch http://www.python.org/sf/432401)
Walter Dörwald committed
August 14, 2002
B
Added a FutureWarning for constructs that will change semantically in
Barry Warsaw committed
July 29, 2002
M
Excise DL_IMPORT/EXPORT from object.h, and related files. This patch
Mark Hammond committed
June 13, 2002
M
Patch #568124: Add doc string macros.
Martin v. Löwis committed
May 29, 2002
N
As discussed on python-dev, add a mechanism to indicate features
Neal Norwitz committed
March 28, 2002
S
add comment reminding people about class hierarchy in Doc/lib/libexcs.tex
Skip Montanaro committed
March 3, 2002
M
Patch #50002: Display line information for bad \x escapes:
Martin v. Löwis committed
November 28, 2001
J
Use PyOS_snprintf instead of sprintf.
Jeremy Hylton committed
October 5, 2001
F
weakref.ReferenceError becomes a built-in exception now that weak ref objects
Fred Drake committed
August 23, 2001
G
Introduce OverflowWarning -- to be issued when short int operations
Guido van Rossum committed
August 2, 2001
T
Merge of descr-branch back into trunk.
Tim Peters committed
April 20, 2001
G
Iterators phase 1. This comprises:
Guido van Rossum committed
April 14, 2001
G
Make some private symbols static.
Guido van Rossum committed
February 28, 2001
F
SyntaxError__init__(): Be a little more robust when picking apart the
Fred Drake committed
T
SF patch 404928: Support for next Cygwin gcc (2.95.2-8)
Tim Peters committed
January 23, 2001
B
Leak pluggin', bug fixin' and better documentin'. Specifically,
Barry Warsaw committed
December 15, 2000
G
Add definitions for standard warning category classes (PyExc_Warning
Guido van Rossum committed
October 24, 2000
F
Ka-Ping Yee <ping@lfw.org>:
Fred Drake committed
August 18, 2000
F
Remove a couple of warnings turned up by "gcc -Wall".
Fred Drake committed
B
SyntaxError__classinit__(): Slight reorg for simplicity.
Barry Warsaw committed
August 16, 2000
B
SyntaxError__str__(): Fix two memory problems discovered by Insure.
Barry Warsaw committed
August 15, 2000
F
my_basename(): Removes the leading path components from a path name,
Fred Drake committed
F
SyntaxError__str__(): Do more formatting of the exception here, rather
Fred Drake committed
July 22, 2000
T
Fix two instances of empty argument lists, and fix style
Thomas Wouters committed
July 16, 2000
T
Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either
Thomas Wouters committed
July 12, 2000
J
replace PyXXX_Length calls with PyXXX_Size calls
Jeremy Hylton committed
T
Worm around MSVC6 error on single string literal > 2Kb.
Tim Peters committed
July 11, 2000
F
Create two new exceptions: IndentationError and TabError. These are
Fred Drake committed
July 9, 2000
B
Exception__str__(): In case 1, be sure to decref the tmp local
Barry Warsaw committed
B
EnvironmentError__init__(): The two case clauses were missing
Barry Warsaw committed
July 1, 2000
B
init_exceptions(): Decref `doc' so it doesn't leak.
Barry Warsaw committed
June 30, 2000
J
replace constant 1 with symbolic constant METH_VARARGS
Jeremy Hylton committed
June 20, 2000
J
mark SyntaxError__str__ as METH_VARARGS
Jeremy Hylton committed
May 26, 2000
B
The standard exception classes. Moved here from ../Modules/_exceptions.c
Barry Warsaw committed