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