Kaydet (Commit) bbaff4c7 authored tarafından Thomas Wouters's avatar Thomas Wouters

Properly indent two lines. (Spotted because it caused merge conflicts in the

py3k branch ;)
üst cbab5949
...@@ -2300,7 +2300,7 @@ PyObject_IsInstance(PyObject *inst, PyObject *cls) ...@@ -2300,7 +2300,7 @@ PyObject_IsInstance(PyObject *inst, PyObject *cls)
} }
return ok; return ok;
} }
return recursive_isinstance(inst, cls, Py_GetRecursionLimit()); return recursive_isinstance(inst, cls, Py_GetRecursionLimit());
} }
static int static int
...@@ -2374,7 +2374,7 @@ PyObject_IsSubclass(PyObject *derived, PyObject *cls) ...@@ -2374,7 +2374,7 @@ PyObject_IsSubclass(PyObject *derived, PyObject *cls)
} }
return ok; return ok;
} }
return recursive_issubclass(derived, cls, Py_GetRecursionLimit()); return recursive_issubclass(derived, cls, Py_GetRecursionLimit());
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment