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
There is a missing tp_traverse on the New_PyArrayDescr_spec (which derives from the New_PyArrayDescr_spec_prototype), since PyArray_Descr has HPyFields. PyPy requires these, and will not let HPyField_Store work if the tp_traverse is missing. Since HPyField_Store has a void return value, PyPy will exit. I will submit a PR to add the missing tp_traverse and also raise a HPy issue to change the return value so an error can properly be reported.
The text was updated successfully, but these errors were encountered:
There is a missing
tp_traverse
on theNew_PyArrayDescr_spec
(which derives from theNew_PyArrayDescr_spec_prototype
), sincePyArray_Descr
hasHPyFields
. PyPy requires these, and will not letHPyField_Store
work if thetp_traverse
is missing. SinceHPyField_Store
has a void return value, PyPy will exit. I will submit a PR to add the missingtp_traverse
and also raise a HPy issue to change the return value so an error can properly be reported.The text was updated successfully, but these errors were encountered: