]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
fix indent
authorVictor Stinner <victor.stinner@gmail.com>
Tue, 29 Oct 2013 09:56:34 +0000 (10:56 +0100)
committerVictor Stinner <victor.stinner@gmail.com>
Tue, 29 Oct 2013 09:56:34 +0000 (10:56 +0100)
Objects/typeobject.c

index 6826cf9697899a607411c093aed33a2e42050468..99fa899016f66c55847949586c9db9e6b24b6f98 100644 (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)