disable the compatibility hack for Cython versions < 0.29 for stackless 3.8.0b1 and up
akruis opened this issue · 1 comments
akruis commented
Issue #168 introduced a hack to make Stackless compatible with older Cython versions.
Disable this hack starting with version 3.8.0b1. This version was released long after Cython 0.29.
I'll introduce the C-macro
#define SLP_END_OF_OLD_CYTHON_HACK_VERSION (0x030800b1)
in stackless_impl.h. If PY_VERSION_HEX is lower than this macro, if the hack is enabled.
akruis commented
done