[Python-checkins] cpython (2.7): Small clarification in extending docs.

georg.brandl python-checkins at python.org
Sun Oct 6 11:02:15 CEST 2013


http://hg.python.org/cpython/rev/c2e535ee2733
changeset:   86035:c2e535ee2733
branch:      2.7
parent:      86024:17a41be2bd13
user:        Georg Brandl <georg at python.org>
date:        Sun Oct 06 11:02:38 2013 +0200
summary:
  Small clarification in extending docs.

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
@@ -510,7 +510,7 @@
 value of the Python function.  :c:func:`PyObject_CallObject` is
 "reference-count-neutral" with respect to its arguments.  In the example a new
 tuple was created to serve as the argument list, which is :c:func:`Py_DECREF`\
--ed immediately after the call.
+-ed immediately after the :c:func:`PyObject_CallObject` call.
 
 The return value of :c:func:`PyObject_CallObject` is "new": either it is a brand
 new object, or it is an existing object whose reference count has been

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


More information about the Python-checkins mailing list