-
-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Deprecate Python:acquire_gil
and use Python::with_gil
.
#4478
Comments
Working on it. |
Awesome. I recall that we could not make all work without Let's first find out on which snippets that is the case, then we can ask a more useful question. |
The only issue I found is in |
…ola-rs#4478) Deprecate Python:acquire_gil and use Python::with_gil as this is recommended now by PyO3. Only get_mmap_bytes_reader function is still using Python:acquire_gil as it has incompatible return types. Closes: pola-rs#4478
Problem Description
Deprecate
Python:acquire_gil
and usePython::with_gil
instead as PyO3 recommends this now:PyO3/pyo3#2549
The text was updated successfully, but these errors were encountered: