Commit b5662898 authored by Fred Drake's avatar Fred Drake

Fix broken API descriptions in comments.

parent c2659cff
...@@ -350,10 +350,9 @@ xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/ ...@@ -350,10 +350,9 @@ xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/* /*
Call a callable Python object, callable_object, with a Call a callable Python object, callable_object, with a
variable number of C arguments. The C arguments are provided variable number of C arguments. The C arguments are provided
as PyObject * values; 'n' specifies the number of arguments as PyObject * values, terminated by a NULL. Returns the
present. Returns the result of the call on success, or NULL result of the call on success, or NULL on failure. This is
on failure. This is the equivalent of the Python expression: the equivalent of the Python expression: apply(o,args).
apply(o,args).
*/ */
...@@ -362,10 +361,10 @@ xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/ ...@@ -362,10 +361,10 @@ xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/* /*
Call the method named m of object o with a variable number of Call the method named m of object o with a variable number of
C arguments. The C arguments are provided as PyObject * values; C arguments. The C arguments are provided as PyObject *
'n' specifies the number of arguments present. Returns the values, terminated by NULL. Returns the result of the call
result of the call on success, or NULL on failure. This is the on success, or NULL on failure. This is the equivalent of
equivalent of the Python expression: o.method(args). the Python expression: o.method(args).
*/ */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment