mirror of
https://github.com/python/cpython.git
synced 2025-07-30 22:54:16 +00:00
Properly indent two lines. (Spotted because it caused merge conflicts in the
py3k branch ;)
This commit is contained in:
parent
cbab5949c9
commit
bbaff4c7e8
1 changed files with 2 additions and 2 deletions
|
@ -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());
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue