diff options
author | Fred Drake <fdrake@acm.org> | 2001-10-28 02:39:03 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-10-28 02:39:03 (GMT) |
commit | b0c079e3e5793290db8651ea4edbbf6d4ba18218 (patch) | |
tree | 6cd66c15270b6c26584334b111fa5d394ab12c51 /Doc/api/refcounts.dat | |
parent | 86443216b71d3a2ae25561ab1288e8a03db594d2 (diff) | |
download | cpython-b0c079e3e5793290db8651ea4edbbf6d4ba18218.zip cpython-b0c079e3e5793290db8651ea4edbbf6d4ba18218.tar.gz cpython-b0c079e3e5793290db8651ea4edbbf6d4ba18218.tar.bz2 |
PyObject_CallFunctionObArgs() ---> PyObject_CallFunctionObjArgs()
PyObject_CallMethodObArgs() ---> PyObject_CallMethodObjArgs()
Diffstat (limited to 'Doc/api/refcounts.dat')
-rw-r--r-- | Doc/api/refcounts.dat | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Doc/api/refcounts.dat b/Doc/api/refcounts.dat index 374cdf1..31b3f5e 100644 --- a/Doc/api/refcounts.dat +++ b/Doc/api/refcounts.dat @@ -719,9 +719,9 @@ PyObject_CallFunction:PyObject*:callable_object:0: PyObject_CallFunction:char*:format:: PyObject_CallFunction::...:: -PyObject_CallFunctionObArgs:PyObject*::+1: -PyObject_CallFunctionObArgs:PyObject*:callable:0: -PyObject_CallFunctionObArgs::...:: +PyObject_CallFunctionObjArgs:PyObject*::+1: +PyObject_CallFunctionObjArgs:PyObject*:callable:0: +PyObject_CallFunctionObjArgs::...:: PyObject_CallMethod:PyObject*::+1: PyObject_CallMethod:PyObject*:o:0: @@ -729,10 +729,10 @@ PyObject_CallMethod:char*:m:: PyObject_CallMethod:char*:format:: PyObject_CallMethod::...:: -PyObject_CallMethodObArgs:PyObject*::+1: -PyObject_CallMethodObArgs:PyObject*:o:0: -PyObject_CallMethodObArgs:char*:name:: -PyObject_CallMethodObArgs::...:: +PyObject_CallMethodObjArgs:PyObject*::+1: +PyObject_CallMethodObjArgs:PyObject*:o:0: +PyObject_CallMethodObjArgs:char*:name:: +PyObject_CallMethodObjArgs::...:: PyObject_CallObject:PyObject*::+1: PyObject_CallObject:PyObject*:callable_object:0: |