From: Fred Drake Date: Mon, 1 Apr 2002 23:12:25 +0000 (+0000) Subject: There is no PyArg_ConvertTuple(); call it by the right name. X-Git-Tag: v2.3c1~6172 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d764b0a484b1cd653b155dcf80bdda76f2e7e84f;p=thirdparty%2FPython%2Fcpython.git There is no PyArg_ConvertTuple(); call it by the right name. This closes SF bug #537511. --- diff --git a/Doc/ext/extending.tex b/Doc/ext/extending.tex index bf6302588686..716696b05072 100644 --- a/Doc/ext/extending.tex +++ b/Doc/ext/extending.tex @@ -792,7 +792,7 @@ follows: where \var{object} is the Python object to be converted and \var{address} is the \ctype{void *} argument that was passed to -\cfunction{PyArg_ConvertTuple()}. The returned \var{status} should be +\cfunction{PyArg_ParseTuple()}. The returned \var{status} should be \code{1} for a successful conversion and \code{0} if the conversion has failed. When the conversion fails, the \var{converter} function should raise an exception.