From: Eli Bendersky Date: Sat, 11 Feb 2012 08:27:31 +0000 (+0200) Subject: fix Doc/extending/extending.rst typo X-Git-Tag: v3.3.0a1~202^2~9 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=44fb613816f2e0e9fc4388ef80603fa9ae35de4f;p=thirdparty%2FPython%2Fcpython.git fix Doc/extending/extending.rst typo --- diff --git a/Doc/extending/extending.rst b/Doc/extending/extending.rst index c4ced1af8b79..7f1ad5d6336e 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.