fix indentation glitch

This commit is contained in:
Jeremy Hylton 2001-01-29 22:38:32 +00:00
parent 2d339f9369
commit 09ac89ae78

View file

@ -626,7 +626,7 @@ instance_getattr2(register PyInstanceObject *inst, PyObject *name)
if (class != NULL) { if (class != NULL) {
if (PyFunction_Check(v)) { if (PyFunction_Check(v)) {
PyObject *w = PyMethod_New(v, (PyObject *)inst, PyObject *w = PyMethod_New(v, (PyObject *)inst,
(PyObject *)class); (PyObject *)class);
Py_DECREF(v); Py_DECREF(v);
v = w; v = w;
} }