cpython/Objects
Guido van Rossum 0986d8250f - A type can now inherit its metatype from its base type. Previously,
when PyType_Ready() was called, if ob_type was found to be NULL, it
  was always set to &PyType_Type; now it is set to base->ob_type,
  where base is tp_base, defaulting to &PyObject_Type.

- PyType_Ready() accidentally did not inherit tp_is_gc; now it does.

Bugfix candidate.
2002-04-08 01:38:42 +00:00
..
.cvsignore
abstract.c
boolobject.c As Neal pointed out, bool_print was an order of magnitude too complex. 2002-04-04 01:00:42 +00:00
bufferobject.c
cellobject.c
classobject.c
cobject.c
complexobject.c
descrobject.c
dictobject.c Add the 'bool' type and its values 'False' and 'True', as described in 2002-04-03 22:41:51 +00:00
fileobject.c isatty() should return a bool. 2002-04-07 06:28:00 +00:00
floatobject.c
frameobject.c
funcobject.c Fix the names of the classmethod and staticmethod constructors as passed to 2002-04-03 21:42:45 +00:00
intobject.c Add the 'bool' type and its values 'False' and 'True', as described in 2002-04-03 22:41:51 +00:00
iterobject.c
listobject.c
longobject.c
methodobject.c
moduleobject.c
object.c Add the 'bool' type and its values 'False' and 'True', as described in 2002-04-03 22:41:51 +00:00
obmalloc.c Minor improvements to the stats output dump, including adding commas to 2002-04-06 01:45:35 +00:00
rangeobject.c
sliceobject.c
stringobject.c Add the 'bool' type and its values 'False' and 'True', as described in 2002-04-03 22:41:51 +00:00
structseq.c
tupleobject.c
typeobject.c - A type can now inherit its metatype from its base type. Previously, 2002-04-08 01:38:42 +00:00
unicodectype.c
unicodeobject.c Add the 'bool' type and its values 'False' and 'True', as described in 2002-04-03 22:41:51 +00:00
unicodetype_db.h
weakrefobject.c
xxobject.c