[Python-checkins] cpython (merge 3.3 -> default): merge with 3.3

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


http://hg.python.org/cpython/rev/a9564e4acf97
changeset:   86034:a9564e4acf97
parent:      86032:7d94034e1ddc
parent:      86033:185f08083b80
user:        Georg Brandl <georg at python.org>
date:        Sun Oct 06 11:02:46 2013 +0200
summary:
  merge with 3.3

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
@@ -515,7 +515,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