[Python-checkins] python/dist/src/Include abstract.h,2.47,2.48

fdrake@users.sourceforge.net fdrake@users.sourceforge.net
Mon, 12 May 2003 14:41:41 -0700


Update of /cvsroot/python/python/dist/src/Include
In directory sc8-pr-cvs1:/tmp/cvs-serv20101

Modified Files:
	abstract.h 
Log Message:
Fix broken API descriptions in comments.


Index: abstract.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/abstract.h,v
retrieving revision 2.47
retrieving revision 2.48
diff -C2 -d -r2.47 -r2.48
*** abstract.h	28 Feb 2003 05:11:03 -0000	2.47
--- abstract.h	12 May 2003 21:41:39 -0000	2.48
***************
*** 351,358 ****
  	 Call a callable Python object, callable_object, with a
  	 variable number of C arguments.  The C arguments are provided
! 	 as PyObject * values; 'n' specifies the number of arguments
! 	 present.  Returns the result of the call on success, or NULL
! 	 on failure.  This is the equivalent of the Python expression:
! 	 apply(o,args).
         */
  
--- 351,357 ----
  	 Call a callable Python object, callable_object, with a
  	 variable number of C arguments.  The C arguments are provided
! 	 as PyObject * values, terminated by a NULL.  Returns the
! 	 result of the call on success, or NULL on failure.  This is
! 	 the equivalent of the Python expression: apply(o,args).
         */
  
***************
*** 363,370 ****
         /*
  	 Call the method named m of object o with a variable number of
! 	 C arguments.  The C arguments are provided as PyObject * values;
! 	 'n' specifies the number of arguments present.  Returns the
! 	 result of the call on success, or NULL on failure.  This is the
! 	 equivalent of the Python expression: o.method(args).
         */
  
--- 362,369 ----
         /*
  	 Call the method named m of object o with a variable number of
! 	 C arguments.  The C arguments are provided as PyObject *
! 	 values, terminated by NULL.  Returns the result of the call
! 	 on success, or NULL on failure.  This is the equivalent of
! 	 the Python expression: o.method(args).
         */