Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit bebba50

Browse files
committed
fix indent
1 parent 3a19a89 commit bebba50

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

Objects/typeobject.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5324,10 +5324,10 @@ slot_tp_str(PyObject *self)
53245324
func = lookup_method(self, &PyId___str__);
53255325
if (func == NULL)
53265326
return NULL;
5327-
res = PyEval_CallObject(func, NULL);
5328-
Py_DECREF(func);
5329-
return res;
5330-
}
5327+
res = PyEval_CallObject(func, NULL);
5328+
Py_DECREF(func);
5329+
return res;
5330+
}
53315331

53325332
static Py_hash_t
53335333
slot_tp_hash(PyObject *self)

0 commit comments

Comments
 (0)