Commit 13238f5b authored by scoder's avatar scoder Committed by GitHub

Merge pull request #1604 from rlamy/pypy3.5-slots

Un-disable Python3-specific slots on pypy3.5
parents 6b2995b4 b64461e9
......@@ -694,7 +694,7 @@ property_accessor_signatures = {
#
#------------------------------------------------------------------------------------------
PyNumberMethods_Py3_GUARD = "PY_MAJOR_VERSION < 3 || CYTHON_COMPILING_IN_PYPY"
PyNumberMethods_Py3_GUARD = "PY_MAJOR_VERSION < 3 || (CYTHON_COMPILING_IN_PYPY && PY_VERSION_HEX < 0x03050000)"
PyNumberMethods = (
MethodSlot(binaryfunc, "nb_add", "__add__"),
......
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