-
Notifications
You must be signed in to change notification settings - Fork 4k
Closed
Labels
Component: PythonPriority: BlockerMarks a blocker for the releaseMarks a blocker for the releaseType: bug
Milestone
Description
Describe the bug, including details regarding any error messages, version, and platform.
_Py_IsFinalizing was removed in python/cpython#106400 and replaced with a public version in python/cpython#108032 .
This function is used 5 places in udf.cc for example:
arrow/python/pyarrow/src/arrow/python/udf.cc
Lines 49 to 53 in 0ef7351
| ~PythonUdfKernelState() { | |
| if (_Py_IsFinalizing()) { | |
| function->detach(); | |
| } | |
| } |
Presumably this will need to be version gated on the version of CPython, but I am not sure how you prefer to do that in arrow.
Component(s)
Python
Metadata
Metadata
Assignees
Labels
Component: PythonPriority: BlockerMarks a blocker for the releaseMarks a blocker for the releaseType: bug