You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 13, 2025. It is now read-only.
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.
The text was updated successfully, but these errors were encountered:
Disable the support for Cython versions below 0.29.
Starting with Stackless version 3.8.0b1 extension modules compiled with
regular C-Python and Cython versions below 0.29 no longer work with
Stackless Python.
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.
The text was updated successfully, but these errors were encountered: