From: Thomas Wouters Date: Tue, 18 Sep 2007 23:27:30 +0000 (+0000) Subject: Properly indent two lines. (Spotted because it caused merge conflicts in the X-Git-Tag: v2.6a1~1271 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bbaff4c7e8de61a80b1ab77602e83b5a030d380a;p=python Properly indent two lines. (Spotted because it caused merge conflicts in the py3k branch ;) --- diff --git a/Objects/abstract.c b/Objects/abstract.c index 16e0270986..46288dd941 100644 --- a/Objects/abstract.c +++ b/Objects/abstract.c @@ -2300,7 +2300,7 @@ PyObject_IsInstance(PyObject *inst, PyObject *cls) } return ok; } - return recursive_isinstance(inst, cls, Py_GetRecursionLimit()); + return recursive_isinstance(inst, cls, Py_GetRecursionLimit()); } static int @@ -2374,7 +2374,7 @@ PyObject_IsSubclass(PyObject *derived, PyObject *cls) } return ok; } - return recursive_issubclass(derived, cls, Py_GetRecursionLimit()); + return recursive_issubclass(derived, cls, Py_GetRecursionLimit()); }