[Python-checkins] cpython: fix Doc/extending/extending.rst typo

eli.bendersky python-checkins at python.org
Sat Feb 11 09:27:53 CET 2012


http://hg.python.org/cpython/rev/3f3496d57233
changeset:   74869:3f3496d57233
user:        Eli Bendersky <eliben at gmail.com>
date:        Sat Feb 11 10:27:31 2012 +0200
summary:
  fix Doc/extending/extending.rst typo

files:
  Doc/extending/extending.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/extending/extending.rst b/Doc/extending/extending.rst
--- a/Doc/extending/extending.rst
+++ b/Doc/extending/extending.rst
@@ -321,7 +321,7 @@
 
 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.
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list