Commit cdc73ed2 authored by Matti Picus's avatar Matti Picus Committed by GitHub

PyPy does not implement PyCode_NewWithPosOnlyArgs() (GH-4478)

parent 1f0f5f36
...@@ -537,7 +537,7 @@ class __Pyx_FakeReference { ...@@ -537,7 +537,7 @@ class __Pyx_FakeReference {
} }
return co; return co;
} }
#elif PY_VERSION_HEX >= 0x030800B2 #elif PY_VERSION_HEX >= 0x030800B2 && !CYTHON_COMPILING_IN_PYPY
#define __Pyx_PyCode_New(a, p, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) \ #define __Pyx_PyCode_New(a, p, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) \
PyCode_NewWithPosOnlyArgs(a, p, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) PyCode_NewWithPosOnlyArgs(a, p, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos)
......
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