Commit bebba505 authored by Victor Stinner's avatar Victor Stinner

fix indent

parent 3a19a89e
......@@ -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)
......
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