summaryrefslogtreecommitdiffstats
path: root/Objects/abstract.c
diff options
context:
space:
mode:
authorAlexandre Vassalotti <alexandre@peadrop.com>2013-05-02 17:44:04 (GMT)
committerAlexandre Vassalotti <alexandre@peadrop.com>2013-05-02 17:44:04 (GMT)
commit865eaa1b53b7f87e13e07f0e96c5659edf003ab1 (patch)
tree65aad09c0ba512559c4c008ae0d62a6dac18b1d3 /Objects/abstract.c
parent242db728e2fcbf9004143517d240301334b02545 (diff)
downloadcpython-865eaa1b53b7f87e13e07f0e96c5659edf003ab1.zip
cpython-865eaa1b53b7f87e13e07f0e96c5659edf003ab1.tar.gz
cpython-865eaa1b53b7f87e13e07f0e96c5659edf003ab1.tar.bz2
Closes #17892: Fix the name of _PyObject_CallMethodObjIdArgs
Diffstat (limited to 'Objects/abstract.c')
-rw-r--r--Objects/abstract.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/abstract.c b/Objects/abstract.c
index bfd53c9..0934b95 100644
--- a/Objects/abstract.c
+++ b/Objects/abstract.c
@@ -2343,7 +2343,7 @@ PyObject_CallMethodObjArgs(PyObject *callable, PyObject *name, ...)
}
PyObject *
-_PyObject_CallMethodObjIdArgs(PyObject *callable,
+_PyObject_CallMethodIdObjArgs(PyObject *callable,
struct _Py_Identifier *name, ...)
{
PyObject *args, *tmp;