diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2013-10-29 09:56:34 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2013-10-29 09:56:34 (GMT) |
commit | bebba5059c67919b2099b4ac089401a823230bab (patch) | |
tree | fdf3e0878a75addc7abeb008b3dd1d7b1cd29199 /Objects | |
parent | 3a19a89eacdb10407c6d1dc59887d11faea7aa3e (diff) | |
download | cpython-bebba5059c67919b2099b4ac089401a823230bab.zip cpython-bebba5059c67919b2099b4ac089401a823230bab.tar.gz cpython-bebba5059c67919b2099b4ac089401a823230bab.tar.bz2 |
fix indent
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/typeobject.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Objects/typeobject.c b/Objects/typeobject.c index 6826cf9..99fa899 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) |