From bbaff4c7e8de61a80b1ab77602e83b5a030d380a Mon Sep 17 00:00:00 2001 From: Thomas Wouters Date: Tue, 18 Sep 2007 23:27:30 +0000 Subject: [PATCH] Properly indent two lines. (Spotted because it caused merge conflicts in the py3k branch ;) --- Objects/abstract.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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()); } -- 2.47.3