summaryrefslogtreecommitdiffstats
path: root/Include/abstract.h
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2001-10-28 02:39:03 (GMT)
committerFred Drake <fdrake@acm.org>2001-10-28 02:39:03 (GMT)
commitb0c079e3e5793290db8651ea4edbbf6d4ba18218 (patch)
tree6cd66c15270b6c26584334b111fa5d394ab12c51 /Include/abstract.h
parent86443216b71d3a2ae25561ab1288e8a03db594d2 (diff)
downloadcpython-b0c079e3e5793290db8651ea4edbbf6d4ba18218.zip
cpython-b0c079e3e5793290db8651ea4edbbf6d4ba18218.tar.gz
cpython-b0c079e3e5793290db8651ea4edbbf6d4ba18218.tar.bz2
PyObject_CallFunctionObArgs() ---> PyObject_CallFunctionObjArgs()
PyObject_CallMethodObArgs() ---> PyObject_CallMethodObjArgs()
Diffstat (limited to 'Include/abstract.h')
-rw-r--r--Include/abstract.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Include/abstract.h b/Include/abstract.h
index 0d44f6d..8ebc3cd 100644
--- a/Include/abstract.h
+++ b/Include/abstract.h
@@ -344,8 +344,8 @@ xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
*/
- DL_IMPORT(PyObject *) PyObject_CallFunctionObArgs(PyObject *callable,
- ...);
+ DL_IMPORT(PyObject *) PyObject_CallFunctionObjArgs(PyObject *callable,
+ ...);
/*
Call a callable Python object, callable_object, with a
@@ -357,8 +357,8 @@ xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
*/
- DL_IMPORT(PyObject *) PyObject_CallMethodObArgs(PyObject *o,
- PyObject *m, ...);
+ DL_IMPORT(PyObject *) PyObject_CallMethodObjArgs(PyObject *o,
+ PyObject *m, ...);
/*
Call the method named m of object o with a variable number of