diff options
Diffstat (limited to 'Doc/ext/embedding.tex')
-rw-r--r-- | Doc/ext/embedding.tex | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Doc/ext/embedding.tex b/Doc/ext/embedding.tex index 90663dc..453a939 100644 --- a/Doc/ext/embedding.tex +++ b/Doc/ext/embedding.tex @@ -231,9 +231,10 @@ emb_numargs(PyObject *self, PyObject *args) return Py_BuildValue("i", numargs); } -static PyMethodDef EmbMethods[]={ - {"numargs", emb_numargs, METH_VARARGS}, - {NULL, NULL} +static PyMethodDef EmbMethods[] = { + {"numargs", emb_numargs, METH_VARARGS, + "Return the number of arguments received by the process."}, + {NULL, NULL, 0, NULL} }; \end{verbatim} |