diff options
author | Eli Bendersky <eliben@gmail.com> | 2012-02-11 08:27:31 (GMT) |
---|---|---|
committer | Eli Bendersky <eliben@gmail.com> | 2012-02-11 08:27:31 (GMT) |
commit | 44fb613816f2e0e9fc4388ef80603fa9ae35de4f (patch) | |
tree | 0ff35b7e889499830b65684059bf070a4fa640e7 /Doc/extending | |
parent | d049d5c7fbe46d90da5d1bc4976e7741d8a2ad33 (diff) | |
download | cpython-44fb613816f2e0e9fc4388ef80603fa9ae35de4f.zip cpython-44fb613816f2e0e9fc4388ef80603fa9ae35de4f.tar.gz cpython-44fb613816f2e0e9fc4388ef80603fa9ae35de4f.tar.bz2 |
fix Doc/extending/extending.rst typo
Diffstat (limited to 'Doc/extending')
-rw-r--r-- | Doc/extending/extending.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/extending/extending.rst b/Doc/extending/extending.rst index c4ced1a..7f1ad5d 100644 --- a/Doc/extending/extending.rst +++ b/Doc/extending/extending.rst @@ -321,7 +321,7 @@ parameters to be passed in as a tuple acceptable for parsing via The :const:`METH_KEYWORDS` bit may be set in the third field if keyword arguments should be passed to the function. In this case, the C function should -accept a third ``PyObject \*`` parameter which will be a dictionary of keywords. +accept a third ``PyObject *`` parameter which will be a dictionary of keywords. Use :c:func:`PyArg_ParseTupleAndKeywords` to parse the arguments to such a function. |