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
Describe the bug
A clear and concise description of what the bug is.
python/cpython#92537 removed the function _PyUnicode_Ready which cython is using.
To Reproduce
Code to reproduce the behaviour:
Attempt to build scipy fails with missing symbols. It looks like this changes was anticipated, however the code is guarded on defined(PyUnicode_IS_READY) and CPyhon retained that function as a no-op for back-compatibility. Checking if the private function is defined fixes this problem (but exposes another that I will open an issue for shortly).
Describe the bug
A clear and concise description of what the bug is.
python/cpython#92537 removed the function
_PyUnicode_Ready
which cython is using.To Reproduce
Code to reproduce the behaviour:
Attempt to build scipy fails with missing symbols. It looks like this changes was anticipated, however the code is guarded on
defined(PyUnicode_IS_READY)
and CPyhon retained that function as a no-op for back-compatibility. Checking if the private function is defined fixes this problem (but exposes another that I will open an issue for shortly).I will open a PR shortly with the diff
Expected behavior
A clear and concise description of what you expected to happen.
Environment (please complete the following information):
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: