Closes #17892: Fix the name of _PyObject_CallMethodObjIdArgs

This commit is contained in:
Alexandre Vassalotti 2013-05-02 10:44:04 -07:00
parent 242db728e2
commit 865eaa1b53
3 changed files with 6 additions and 7 deletions

View file

@ -339,11 +339,10 @@ xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
PyAPI_FUNC(PyObject *) PyObject_CallMethodObjArgs(PyObject *o,
PyObject *method, ...);
PyAPI_FUNC(PyObject *) _PyObject_CallMethodObjIdArgs(PyObject *o,
PyAPI_FUNC(PyObject *) _PyObject_CallMethodIdObjArgs(PyObject *o,
struct _Py_Identifier *method,
...);
/*
Call the method named m of object o with a variable number of
C arguments. The C arguments are provided as PyObject *