Commit 9fac2f53 authored by Stefan Behnel's avatar Stefan Behnel

PyPy fix in exception reraising code

parent f5f34c7b
...@@ -269,7 +269,7 @@ static CYTHON_INLINE void __Pyx_ReraiseException(void) { ...@@ -269,7 +269,7 @@ static CYTHON_INLINE void __Pyx_ReraiseException(void) {
value = tstate->exc_value; value = tstate->exc_value;
tb = tstate->exc_traceback; tb = tstate->exc_traceback;
#else #else
PyErr_GetExcInfo(type, value, tb); PyErr_GetExcInfo(&type, &value, &tb);
#endif #endif
if (!type || type == Py_None) { if (!type || type == Py_None) {
#if !CYTHON_COMPILING_IN_CPYTHON #if !CYTHON_COMPILING_IN_CPYTHON
......
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