Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork32k
Closed
Description
The Python C API has many functions to call a function or a method:https://docs.python.org/dev/c-api/call.html
ThePyEval variants weredeprecated in Python 3.9. I propose to now remove them:
PyEval_CallObject()
PyEval_CallObjectWithKeywords()
PyEval_CallFunction()
PyEval_CallMethod()
There are replacement functions like PyObject_Call() and PyObject_CallFunction() which exist since Python 3.0 at least and so is backward compatible.