Commit dfe49a97 authored by Stefan Behnel's avatar Stefan Behnel

C comment fix in utility code

parent 43596677
......@@ -277,8 +277,9 @@ static CYTHON_INLINE void __Pyx_ReraiseException(void) {
Py_XDECREF(value);
Py_XDECREF(tb);
#endif
// message copied from Py3
PyErr_SetString(PyExc_RuntimeError,
"No active exception to reraise"); // message copied from Py3
"No active exception to reraise");
} else {
#if CYTHON_COMPILING_IN_CPYTHON
Py_INCREF(type);
......
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