cpython/Objects
Guido van Rossum 0fd00334c6 Avoid using calloc(). This triggered an obscure bug on multiprocessor
Sparc Solaris 2.6 (fully patched!) that I don't want to dig into, but
which I suspect is a bug in the multithreaded malloc library that only
shows up when run on a multiprocessor.  (The program wasn't using
threads, it was just using the multithreaded C library.)
1998-07-16 15:06:13 +00:00
..
Makefile.in
abstract.c Add special case to PySequence_List() so that list() of a list is 1998-07-10 18:03:50 +00:00
classobject.c Move the definition of PyMethodObject to classobject.h, so it can define 1998-07-10 15:46:33 +00:00
cobject.c
complexobject.c
dictobject.c Avoid using calloc(). This triggered an obscure bug on multiprocessor 1998-07-16 15:06:13 +00:00
fileobject.c
floatobject.c
frameobject.c
funcobject.c Make function objects somewhat mutable -- the members func_code, 1998-05-22 00:55:34 +00:00
intobject.c
listobject.c Added doc strings for methods and a new pop() method. 1998-06-30 15:36:32 +00:00
longobject.c Add check in long-to-int conversion for at least one digit. 1998-06-22 03:54:46 +00:00
methodobject.c Marc-Andre Lemburg's patch to move the typedef for PyCFunctionObject 1998-07-10 15:21:55 +00:00
moduleobject.c
object.c When comparing objects of different types (which is done by comparing 1998-06-09 18:58:44 +00:00
rangeobject.c
sliceobject.c
stringobject.c Should check that PyObject_Str() really returned a string! 1998-06-09 15:08:41 +00:00
tupleobject.c Slight rearrangement of some code to make it faster, by Vladimir 1998-06-26 15:53:50 +00:00
typeobject.c
xxobject.c