diff options
author | Fred Drake <fdrake@acm.org> | 2001-11-17 06:39:18 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-11-17 06:39:18 (GMT) |
commit | 50ecc15d05837123d34e088863083ee39800a502 (patch) | |
tree | 446cf7d620e33e5788eb00417947230954e244ac /Doc | |
parent | 3176b08874941c2be97b7ab5b1efbfae886eac01 (diff) | |
download | cpython-50ecc15d05837123d34e088863083ee39800a502.zip cpython-50ecc15d05837123d34e088863083ee39800a502.tar.gz cpython-50ecc15d05837123d34e088863083ee39800a502.tar.bz2 |
Add omitted word for clarity.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/api/newtypes.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/api/newtypes.tex b/Doc/api/newtypes.tex index 870b9d6..9bc18e2 100644 --- a/Doc/api/newtypes.tex +++ b/Doc/api/newtypes.tex @@ -158,7 +158,7 @@ and \constant{METH_KEYWORDS} can be combined; the others can't. \begin{datadesc}{METH_VARARGS} This is the typical calling convention, where the methods have the type \ctype{PyMethodDef}. The function expects two - \ctype{PyObject*}. The first one is the \var{self} object for + \ctype{PyObject*} values. The first one is the \var{self} object for methods; for module functions, it has the value given to \cfunction{Py_InitModule4()} (or \NULL{} if \cfunction{Py_InitModule()} was used). The second parameter |