summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2002-04-01 23:14:30 (GMT)
committerFred Drake <fdrake@acm.org>2002-04-01 23:14:30 (GMT)
commitf0632996e8e717258718aaca9143c6690255bf5c (patch)
treec8435a8c3739a2b14e8839f39339b2bcaa126af3 /Doc
parent7003d5355f01680f37ebd19c4c37c944dc21580b (diff)
downloadcpython-f0632996e8e717258718aaca9143c6690255bf5c.zip
cpython-f0632996e8e717258718aaca9143c6690255bf5c.tar.gz
cpython-f0632996e8e717258718aaca9143c6690255bf5c.tar.bz2
There is no PyArg_ConvertTuple(); call it by the right name.
This closes SF bug #537511.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/ext/extending.tex2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/ext/extending.tex b/Doc/ext/extending.tex
index 0051a02..01c45ae 100644
--- a/Doc/ext/extending.tex
+++ b/Doc/ext/extending.tex
@@ -788,7 +788,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.