diff options
author | Fred Drake <fdrake@acm.org> | 2001-10-26 16:29:22 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-10-26 16:29:22 (GMT) |
commit | 81c7aa2c7bb1e1fed170515599a2c023349e285e (patch) | |
tree | 426d60d618826cc8b7539e79522ea95225979eef | |
parent | b421b8c19105d08b97122b7c84eec37ad83c6de4 (diff) | |
download | cpython-81c7aa2c7bb1e1fed170515599a2c023349e285e.zip cpython-81c7aa2c7bb1e1fed170515599a2c023349e285e.tar.gz cpython-81c7aa2c7bb1e1fed170515599a2c023349e285e.tar.bz2 |
Added refcount data for PyObject_CallFunctionObArgs() and
PyObject_CallMethodObArgs().
-rw-r--r-- | Doc/api/refcounts.dat | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Doc/api/refcounts.dat b/Doc/api/refcounts.dat index 747a5e4..374cdf1 100644 --- a/Doc/api/refcounts.dat +++ b/Doc/api/refcounts.dat @@ -719,12 +719,21 @@ PyObject_CallFunction:PyObject*:callable_object:0: PyObject_CallFunction:char*:format:: PyObject_CallFunction::...:: +PyObject_CallFunctionObArgs:PyObject*::+1: +PyObject_CallFunctionObArgs:PyObject*:callable:0: +PyObject_CallFunctionObArgs::...:: + PyObject_CallMethod:PyObject*::+1: PyObject_CallMethod:PyObject*:o:0: 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_CallObject:PyObject*::+1: PyObject_CallObject:PyObject*:callable_object:0: PyObject_CallObject:PyObject*:args:0: |