Message 102038 - Python tracker (original) (raw)
In ceval.c there is such code:
PyObject *
PyEval_CallObject(PyObject *func, PyObject *arg)
{
return PyEval_CallObjectWithKeywords(func, arg, (PyObject *)NULL);
}
#define PyEval_CallObject(func,arg)
PyEval_CallObjectWithKeywords(func, arg, (PyObject *)NULL)
Is this needed any longer? (both #define and function have the same name)