diff options
author | Thomas Wouters <thomas@python.org> | 2007-09-18 23:27:30 +0000 |
---|---|---|
committer | Thomas Wouters <thomas@python.org> | 2007-09-18 23:27:30 +0000 |
commit | bbaff4c7e8de61a80b1ab77602e83b5a030d380a (patch) | |
tree | 3ffe405599297872104307f87dd925dbccaaf507 | |
parent | cbab5949c9088b5c8af24913152358bbf5a8050b (diff) | |
download | cpython-git-bbaff4c7e8de61a80b1ab77602e83b5a030d380a.tar.gz |
Properly indent two lines. (Spotted because it caused merge conflicts in the
py3k branch ;)
-rw-r--r-- | Objects/abstract.c | 4 |
1 files changed, 2 insertions, 2 deletions
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()); } |