diff options
author | Georg Brandl <georg@python.org> | 2007-09-01 12:33:24 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-09-01 12:33:24 (GMT) |
commit | 321976b6e74db8f649e47f2b791c4bcc2a71d127 (patch) | |
tree | f3553ef3dd5133f7a285bdd392a85d49c773749d /Doc/c-api/refcounting.rst | |
parent | 2326a79de134281b12b3ed04eeabcc8c403df57d (diff) | |
download | cpython-321976b6e74db8f649e47f2b791c4bcc2a71d127.zip cpython-321976b6e74db8f649e47f2b791c4bcc2a71d127.tar.gz cpython-321976b6e74db8f649e47f2b791c4bcc2a71d127.tar.bz2 |
Remove versionadded and versionchanged directives, fold information into text where necessary.
Diffstat (limited to 'Doc/c-api/refcounting.rst')
-rw-r--r-- | Doc/c-api/refcounting.rst | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Doc/c-api/refcounting.rst b/Doc/c-api/refcounting.rst index 9dc357f..e75ff73 100644 --- a/Doc/c-api/refcounting.rst +++ b/Doc/c-api/refcounting.rst @@ -61,12 +61,11 @@ objects. It is a good idea to use this macro whenever decrementing the value of a variable that might be traversed during garbage collection. - .. versionadded:: 2.4 The following functions are for runtime dynamic embedding of Python: -``Py_IncRef(PyObject \*o)``, `Py_DecRef(PyObject \*o)``. They are -simply exported function versions of :cfunc:`Py_XINCREF` and -:cfunc:`Py_XDECREF`, respectively. +``Py_IncRef(PyObject \*o)``, `Py_DecRef(PyObject \*o)``. They are simply +exported function versions of :cfunc:`Py_XINCREF` and :cfunc:`Py_XDECREF`, +respectively. The following functions or macros are only for use within the interpreter core: :cfunc:`_Py_Dealloc`, :cfunc:`_Py_ForgetReference`, :cfunc:`_Py_NewReference`, |