Commit 6cc5bb68 authored by Guido van Rossum's avatar Guido van Rossum

Sigh. The crucial change was still missing from the previous

checkin. :-(
parent bfe175c1
...@@ -5399,7 +5399,7 @@ super_getattro(PyObject *self, PyObject *name) ...@@ -5399,7 +5399,7 @@ super_getattro(PyObject *self, PyObject *name)
else else
continue; continue;
res = PyDict_GetItem(dict, name); res = PyDict_GetItem(dict, name);
if (res != NULL && !PyDescr_IsData(res)) { if (res != NULL) {
Py_INCREF(res); Py_INCREF(res);
f = res->ob_type->tp_descr_get; f = res->ob_type->tp_descr_get;
if (f != NULL) { 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