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: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bbaff4c7e8de61a80b1ab77602e83b5a030d380a;p=thirdparty%2FPython%2Fcpython.git 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 16e02709868a..46288dd94114 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()); }