diff options
author | Georg Brandl <georg@python.org> | 2013-10-06 09:02:38 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2013-10-06 09:02:38 (GMT) |
commit | b2efdee8903dd3c9ecdd0e6c10f378be0c65ac22 (patch) | |
tree | feb9f5325c2e3cef0d9c27f89124eea96d1e0a88 /Doc/extending | |
parent | cff39b0120884169d4eb99c9c825bf6c25594830 (diff) | |
download | cpython-b2efdee8903dd3c9ecdd0e6c10f378be0c65ac22.zip cpython-b2efdee8903dd3c9ecdd0e6c10f378be0c65ac22.tar.gz cpython-b2efdee8903dd3c9ecdd0e6c10f378be0c65ac22.tar.bz2 |
Small clarification in extending docs.
Diffstat (limited to 'Doc/extending')
-rw-r--r-- | Doc/extending/extending.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/extending/extending.rst b/Doc/extending/extending.rst index eb18a46..792586d 100644 --- a/Doc/extending/extending.rst +++ b/Doc/extending/extending.rst @@ -510,7 +510,7 @@ or more format codes between parentheses. For example:: 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 |