fix Doc/extending/extending.rst typo
authorEli Bendersky <eliben@gmail.com>
Sat, 11 Feb 2012 08:27:31 +0000 (10:27 +0200)
committerEli Bendersky <eliben@gmail.com>
Sat, 11 Feb 2012 08:27:31 +0000 (10:27 +0200)
Doc/extending/extending.rst

index c4ced1af8b79b34a1767d6931a0022ac39651c7d..7f1ad5d6336edd91c03ec253e2a817d8b56be661 100644 (file)
@@ -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.