Commit 05345843 authored by Stefan Behnel's avatar Stefan Behnel

Fix version guard: PyImport_GetModule() was added in Py3.7.

parent 184146d9
...@@ -75,7 +75,7 @@ static int __Pyx_PyType_Ready(PyTypeObject *t) { ...@@ -75,7 +75,7 @@ static int __Pyx_PyType_Ready(PyTypeObject *t) {
PyObject *ret, *py_status; PyObject *ret, *py_status;
int gc_was_enabled; int gc_was_enabled;
PyObject *gc = NULL; PyObject *gc = NULL;
#if !CYTHON_COMPILING_IN_PYPY || PYPY_VERSION_NUM+0 >= 0x070304 #if PY_VERSION_HEX >= 0x030700a1 && (!CYTHON_COMPILING_IN_PYPY || PYPY_VERSION_NUM+0 >= 0x07030400)
// https://foss.heptapod.net/pypy/pypy/-/issues/3385 // https://foss.heptapod.net/pypy/pypy/-/issues/3385
gc = PyImport_GetModule(PYUNICODE("gc")); gc = PyImport_GetModule(PYUNICODE("gc"));
#endif #endif
......
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