Commit 1027db04 authored by Stefan Behnel's avatar Stefan Behnel

Assume that all live PyPy3 installations know about the correct Py3 signature...

Assume that all live PyPy3 installations know about the correct Py3 signature of PyEval_EvalCode() by now.
See discussion leading up to https://github.com/conda-forge/cython-feedstock/pull/75#issuecomment-848770641
parent d75160b7
......@@ -78,7 +78,7 @@ static PyObject* __Pyx_PyExec3(PyObject* o, PyObject* globals, PyObject* locals)
"code object passed to exec() may not contain free variables");
goto bad;
}
#if CYTHON_COMPILING_IN_PYPY || PY_VERSION_HEX < 0x030200B1
#if PY_VERSION_HEX < 0x030200B1
result = PyEval_EvalCode((PyCodeObject *)o, globals, locals);
#else
result = PyEval_EvalCode(o, globals, locals);
......
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