From 34716c1fa5719288a653e1c029a27728d86bad7a Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Mon, 1 Apr 2002 23:14:30 +0000 Subject: [PATCH] There is no PyArg_ConvertTuple(); call it by the right name. This closes SF bug #537511. --- Doc/ext/ext.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/ext/ext.tex b/Doc/ext/ext.tex index 71f2feb02280..14deb7b2096b 100644 --- a/Doc/ext/ext.tex +++ b/Doc/ext/ext.tex @@ -817,7 +817,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. -- 2.47.3