diff options
author | Thomas Wouters <thomas@python.org> | 2007-09-18 23:27:30 (GMT) |
---|---|---|
committer | Thomas Wouters <thomas@python.org> | 2007-09-18 23:27:30 (GMT) |
commit | bbaff4c7e8de61a80b1ab77602e83b5a030d380a (patch) | |
tree | 3ffe405599297872104307f87dd925dbccaaf507 /Objects/abstract.c | |
parent | cbab5949c9088b5c8af24913152358bbf5a8050b (diff) | |
download | cpython-bbaff4c7e8de61a80b1ab77602e83b5a030d380a.zip cpython-bbaff4c7e8de61a80b1ab77602e83b5a030d380a.tar.gz cpython-bbaff4c7e8de61a80b1ab77602e83b5a030d380a.tar.bz2 |
Properly indent two lines. (Spotted because it caused merge conflicts in the
py3k branch ;)
Diffstat (limited to 'Objects/abstract.c')
-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 16e0270..46288dd 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()); } |