Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 34k
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
Uh oh!
There was an error while loading. Please reload this page.
Conversation
vstinner commented May 30, 2023 • edited by github-actions bot
Loading Uh oh!
There was an error while loading. Please reload this page.
edited by github-actions bot
Uh oh!
There was an error while loading. Please reload this page.
vstinner commented May 30, 2023
cc @methane |
vstinner commented May 30, 2023
The "Tests / Check for source changes (pull_request)" CI job failed because the added NEWS entry filename contains a space in |
hugovk commented May 30, 2023
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()
vstinner commented May 31, 2023
I completed the documentation how to port existing code after reading comments of the long issue #73734. |
vstinner commented May 31, 2023
Thanks. To complete the doc, I rebased my PR on the main branch. |
vstinner commented May 31, 2023
Thanks for the review @methane. |
bedevere-bot commented May 31, 2023
|
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/