Commit 8d285c57 authored by Robert Bradshaw's avatar Robert Bradshaw

Another Python 3.3-3.4 fix.

parent ae017150
...@@ -921,7 +921,7 @@ static void __Pyx_FastGilFuncInit(void); ...@@ -921,7 +921,7 @@ static void __Pyx_FastGilFuncInit(void);
#if PY_VERSION_HEX >= 0x03050000 #if PY_VERSION_HEX >= 0x03050000
#define __Pyx_PyThreadState_Current _PyThreadState_UncheckedGet() #define __Pyx_PyThreadState_Current _PyThreadState_UncheckedGet()
#elif PY_VERSION_HEX >= 0x03000000 #elif PY_VERSION_HEX >= 0x03000000
#define __Pyx_PyThreadState_Current (PyThreadState*)_Py_atomic_load_relaxed(_PyThreadState_Current) #define __Pyx_PyThreadState_Current PyThreadState_Get()
#elif PY_VERSION_HEX < 0x02070000 #elif PY_VERSION_HEX < 0x02070000
#undef CYTHON_THREAD_LOCAL #undef CYTHON_THREAD_LOCAL
#else #else
......
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