Commit 5f112eb4 authored by Tim Peters's avatar Tim Peters

recursive_isinstance(), recursive_issubclass(): New code here returned

NULL in case of error, but the functions are declared to return int.
MSVC 6 properly complains about that.  Return -1 on error instead.
parent 7139afd1
......@@ -2033,7 +2033,7 @@ recursive_isinstance(PyObject *inst, PyObject *cls, int recursion_depth)
if (!recursion_depth) {
PyErr_SetString(PyExc_RuntimeError,
"nest level of tuple too deep");
return NULL;
return -1;
}
n = PyTuple_GET_SIZE(cls);
......@@ -2088,7 +2088,7 @@ recursive_issubclass(PyObject *derived, PyObject *cls, int recursion_depth)
if (!recursion_depth) {
PyErr_SetString(PyExc_RuntimeError,
"nest level of tuple too deep");
return NULL;
return -1;
}
for (i = 0; i < n; ++i) {
retval = recursive_issubclass(
......
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