cpython/Objects
Walter Dörwald e5402fb340 Fix refcount leak in PyUnicode_EncodeCharmap(). The bug surfaces
when an encoding error occurs and the callback name is unknown,
i.e. when the callback has to be called. The problem was that
the fact that the callback has already been looked up was only
recorded in a local variable in charmap_encoding_error(), because
charmap_encoding_error() got it's own copy of the errorHandler
pointer instead of a pointer to the pointer in
PyUnicode_EncodeCharmap().
2003-08-14 20:25:29 +00:00
..
.cvsignore
abstract.c Removed duplicate test from inner loop. 2003-03-01 01:44:32 +00:00
boolobject.c - bool() called without arguments now returns False rather than 2003-04-19 18:15:10 +00:00
bufferobject.c
cellobject.c
classobject.c Make it possible to call instancemethod() with 2 arguments. 2003-04-09 19:35:08 +00:00
cobject.c Add whitespace. 2003-07-11 17:02:39 +00:00
complexobject.c Fix typo in comment. 2003-06-17 20:22:24 +00:00
descrobject.c property_traverse() should also traverse into prop_doc -- there's no 2003-04-09 17:05:33 +00:00
dictnotes.txt Add notes on use cases with paired accesses to the same key. 2003-05-28 14:10:46 +00:00
dictobject.c SF patch #729395: Dictionary tuning 2003-05-07 00:49:40 +00:00
enumobject.c * Beefed-up tests 2003-05-28 14:05:34 +00:00
fileobject.c Only encode Unicode objects when printing them raw. 2003-05-18 12:56:25 +00:00
floatobject.c SF patch 703666: Several objects don't decref tmp on failure in subtype_new 2003-06-28 20:04:25 +00:00
frameobject.c Fix silly typo in comment. 2003-08-11 16:14:06 +00:00
funcobject.c SF bug #753451: classmethod abuse --> SystemError 2003-06-18 01:13:41 +00:00
intobject.c Add a couple of decrefs to error paths. 2003-08-11 17:32:02 +00:00
iterobject.c Whitespace normalization. 2003-06-25 13:12:18 +00:00
listobject.c Fix reference leak noted in test_types: 2003-08-14 17:04:28 +00:00
listsort.txt
longobject.c SF patch 703666: Several objects don't decref tmp on failure in subtype_new 2003-06-28 20:04:25 +00:00
methodobject.c Make __module__ writable except in restricted mode (like for classic classes). 2003-02-18 17:18:35 +00:00
moduleobject.c Remove code that tried to warn about shadowing builtin names after a 2003-07-16 22:04:11 +00:00
object.c _Py_PrintReferenceAddresses(): also print the type name. In real use 2003-04-18 00:45:59 +00:00
obmalloc.c Whitespace normalization. 2003-06-17 15:48:11 +00:00
rangeobject.c Renamed PyObject_GenericGetIter to PyObject_SelfIter 2003-03-17 19:46:11 +00:00
sliceobject.c
stringobject.c Fix whitespace. 2003-06-18 14:17:01 +00:00
structseq.c Removed all uses of the out-of-favor __safe_for_unpickling__ magic 2003-02-01 02:16:37 +00:00
tupleobject.c SF bug #730296: Unexpected Changes in list Iterator 2003-05-07 01:28:47 +00:00
typeobject.c /* XXX From here until type is allocated, "return NULL" leaks bases! */ 2003-08-08 13:57:22 +00:00
unicodectype.c
unicodeobject.c Fix refcount leak in PyUnicode_EncodeCharmap(). The bug surfaces 2003-08-14 20:25:29 +00:00
unicodetype_db.h
weakrefobject.c Remove proxy_print(), since that caused an inconsistency between 2003-07-14 21:46:23 +00:00