diff options
author | Alexandre Vassalotti <alexandre@peadrop.com> | 2013-05-02 17:44:04 (GMT) |
---|---|---|
committer | Alexandre Vassalotti <alexandre@peadrop.com> | 2013-05-02 17:44:04 (GMT) |
commit | 865eaa1b53b7f87e13e07f0e96c5659edf003ab1 (patch) | |
tree | 65aad09c0ba512559c4c008ae0d62a6dac18b1d3 /Include | |
parent | 242db728e2fcbf9004143517d240301334b02545 (diff) | |
download | cpython-865eaa1b53b7f87e13e07f0e96c5659edf003ab1.zip cpython-865eaa1b53b7f87e13e07f0e96c5659edf003ab1.tar.gz cpython-865eaa1b53b7f87e13e07f0e96c5659edf003ab1.tar.bz2 |
Closes #17892: Fix the name of _PyObject_CallMethodObjIdArgs
Diffstat (limited to 'Include')
-rw-r--r-- | Include/abstract.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Include/abstract.h b/Include/abstract.h index e2b0750..6f16913 100644 --- a/Include/abstract.h +++ b/Include/abstract.h @@ -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 * |