Sigh. The crucial change was still missing from the previous

checkin. :-(
This commit is contained in:
Guido van Rossum 2003-04-16 20:01:36 +00:00
parent bfe175c190
commit 6cc5bb685d
1 changed files with 1 additions and 1 deletions

View File

@ -5399,7 +5399,7 @@ super_getattro(PyObject *self, PyObject *name)
else
continue;
res = PyDict_GetItem(dict, name);
if (res != NULL && !PyDescr_IsData(res)) {
if (res != NULL) {
Py_INCREF(res);
f = res->ob_type->tp_descr_get;
if (f != NULL) {