diff options
author | Fred Drake <fdrake@acm.org> | 2002-04-01 23:12:25 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2002-04-01 23:12:25 (GMT) |
commit | d764b0a484b1cd653b155dcf80bdda76f2e7e84f (patch) | |
tree | 192e42b18b37eeaea5518a2faca782cfe41ec80e /Doc/ext/extending.tex | |
parent | d5a072f2ebb9d3fd9551560239be5e3013665280 (diff) | |
download | cpython-d764b0a484b1cd653b155dcf80bdda76f2e7e84f.zip cpython-d764b0a484b1cd653b155dcf80bdda76f2e7e84f.tar.gz cpython-d764b0a484b1cd653b155dcf80bdda76f2e7e84f.tar.bz2 |
There is no PyArg_ConvertTuple(); call it by the right name.
This closes SF bug #537511.
Diffstat (limited to 'Doc/ext/extending.tex')
-rw-r--r-- | Doc/ext/extending.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/ext/extending.tex b/Doc/ext/extending.tex index bf63025..716696b 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. |