From: Victor Stinner Date: Tue, 29 Oct 2013 09:56:34 +0000 (+0100) Subject: fix indent X-Git-Tag: v3.4.0b1~484 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bebba5059c67919b2099b4ac089401a823230bab;p=thirdparty%2FPython%2Fcpython.git fix indent --- diff --git a/Objects/typeobject.c b/Objects/typeobject.c index 6826cf969789..99fa899016f6 100644 --- a/Objects/typeobject.c +++ b/Objects/typeobject.c @@ -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)