Commit edef846d authored by Stefan Behnel's avatar Stefan Behnel

fix argument types in call to PyErr_WriteUnraisable()

parent 2e56693a
...@@ -593,7 +593,7 @@ static int __Pyx_inner_PyErr_GivenExceptionMatches2(PyTypeObject *err, PyTypeObj ...@@ -593,7 +593,7 @@ static int __Pyx_inner_PyErr_GivenExceptionMatches2(PyTypeObject *err, PyTypeObj
res = exc_type1 ? PyObject_IsSubclass((PyObject*)err, (PyObject*)exc_type1) : 0; res = exc_type1 ? PyObject_IsSubclass((PyObject*)err, (PyObject*)exc_type1) : 0;
// This function must not fail, so print the error here // This function must not fail, so print the error here
if (unlikely(res == -1)) { if (unlikely(res == -1)) {
PyErr_WriteUnraisable(err); PyErr_WriteUnraisable((PyObject*)err);
res = 0; res = 0;
} }
if (!res) { if (!res) {
...@@ -601,7 +601,7 @@ static int __Pyx_inner_PyErr_GivenExceptionMatches2(PyTypeObject *err, PyTypeObj ...@@ -601,7 +601,7 @@ static int __Pyx_inner_PyErr_GivenExceptionMatches2(PyTypeObject *err, PyTypeObj
res = PyObject_IsSubclass((PyObject*)err, (PyObject*)exc_type2); res = PyObject_IsSubclass((PyObject*)err, (PyObject*)exc_type2);
// This function must not fail, so print the error here // This function must not fail, so print the error here
if (unlikely(res == -1)) { if (unlikely(res == -1)) {
PyErr_WriteUnraisable(err); PyErr_WriteUnraisable((PyObject*)err);
res = 0; res = 0;
} }
} }
......
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