-
- Notifications
You must be signed in to change notification settings - Fork 33.7k
gh-105107: Remove PyEval_CallFunction() function #105108
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
Conversation
4022016 to 211fb31 Compare | cc @methane |
| The "Tests / Check for source changes (pull_request)" CI job failed because the added NEWS entry filename contains a space in |
| I've merged #105110 to workaround the CI error, let's update this branch. |
Remove 4 functions from the C API, deprecated in Python 3.9: * PyEval_CallObjectWithKeywords() * PyEval_CallObject() * PyEval_CallFunction() * PyEval_CallMethod() Keep 3 functions in the stable ABI: * PyEval_CallObjectWithKeywords() * PyEval_CallFunction() * PyEval_CallMethod()
69669e4 to a394bbc Compare | I completed the documentation how to port existing code after reading comments of the long issue #73734. |
Thanks. To complete the doc, I rebased my PR on the main branch. |
| Thanks for the review @methane. |
|
Remove 4 functions from the C API, deprecated in Python 3.9:
Keep 3 functions in the stable ABI:
📚 Documentation preview 📚: https://cpython-previews--105108.org.readthedocs.build/