[Python-checkins] CVS: python/dist/src/Doc/api abstract.tex,1.3,1.4
Fred L. Drake
fdrake@users.sourceforge.net
2001年10月27日 19:37:12 -0700
Update of /cvsroot/python/python/dist/src/Doc/api
In directory usw-pr-cvs1:/tmp/cvs-serv9432
Modified Files:
abstract.tex
Log Message:
PyObject_CallFunctionObArgs() ---> PyObject_CallFunctionObjArgs()
PyObject_CallMethodObArgs() ---> PyObject_CallMethodObjArgs()
Index: abstract.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/api/abstract.tex,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** abstract.tex 2001年10月26日 16:38:38 1.3
--- abstract.tex 2001年10月28日 02:37:10 1.4
***************
*** 209,215 ****
! \begin{cfuncdesc}{PyObject*}{PyObject_CallFunctionObArgs}{PyObject *callable,
! \moreargs,
! \code{NULL}}
Call a callable Python object \var{callable}, with a variable
number of \ctype{PyObject*} arguments. The arguments are provided
--- 209,215 ----
! \begin{cfuncdesc}{PyObject*}{PyObject_CallFunctionObjArgs}{PyObject *callable,
! \moreargs,
! \code{NULL}}
Call a callable Python object \var{callable}, with a variable
number of \ctype{PyObject*} arguments. The arguments are provided
***************
*** 220,227 ****
! \begin{cfuncdesc}{PyObject*}{PyObject_CallMethodObArgs}{PyObject *o,
! PyObject *name,
! \moreargs,
! \code{NULL}}
Calls a method of the object \var{o}, where the name of the method
is given as a Python string object in \var{name}. It is called with
--- 220,227 ----
! \begin{cfuncdesc}{PyObject*}{PyObject_CallMethodObjArgs}{PyObject *o,
! PyObject *name,
! \moreargs,
! \code{NULL}}
Calls a method of the object \var{o}, where the name of the method
is given as a Python string object in \var{name}. It is called with