- Rename PyType_InitDict() to PyType_Ready().

- Add an explicit call to PyType_Ready(&PyList_Type) to pythonrun.c
  (just for the heck of it, really -- we should either explicitly
  ready all types, or none).
This commit is contained in:
Guido van Rossum 2001-08-07 17:24:28 +00:00
parent c5943b1c8c
commit 528b7eb0b0
5 changed files with 16 additions and 13 deletions

View file

@ -1160,7 +1160,7 @@ PyObject_GenericGetAttr(PyObject *obj, PyObject *name)
PyObject **dictptr;
if (tp->tp_dict == NULL) {
if (PyType_InitDict(tp) < 0)
if (PyType_Ready(tp) < 0)
return NULL;
}
@ -1207,7 +1207,7 @@ PyObject_GenericSetAttr(PyObject *obj, PyObject *name, PyObject *value)
PyObject **dictptr;
if (tp->tp_dict == NULL) {
if (PyType_InitDict(tp) < 0)
if (PyType_Ready(tp) < 0)
return -1;
}