[Python-checkins] cpython: fix indent

victor.stinner python-checkins at python.org
Tue Oct 29 10:56:55 CET 2013


http://hg.python.org/cpython/rev/a7f7f52398b8
changeset:   86733:a7f7f52398b8
parent:      86731:28690d72b99f
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Tue Oct 29 10:56:34 2013 +0100
summary:
  fix indent

files:
  Objects/typeobject.c |  8 ++++----
  1 files changed, 4 insertions(+), 4 deletions(-)


diff --git a/Objects/typeobject.c b/Objects/typeobject.c
--- a/Objects/typeobject.c
+++ b/Objects/typeobject.c
@@ -5324,10 +5324,10 @@
     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)

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list