Commit 8b02fac9 authored by Guido van Rossum's avatar Guido van Rossum

Sigh. The crucial change was still missing from the previous

checkin. :-(
parent f8ca9089
......@@ -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) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment