fix indent

This commit is contained in:
Victor Stinner 2013-10-29 10:56:34 +01:00
parent 3a19a89eac
commit bebba5059c
1 changed files with 4 additions and 4 deletions

View File

@ -5324,10 +5324,10 @@ slot_tp_str(PyObject *self)
func = lookup_method(self, &PyId___str__);
if (func == NULL)
return NULL;
res = PyEval_CallObject(func, NULL);
Py_DECREF(func);
return res;
}
res = PyEval_CallObject(func, NULL);
Py_DECREF(func);
return res;
}
static Py_hash_t
slot_tp_hash(PyObject *self)