diff options
author | Georg Brandl <georg@python.org> | 2007-12-05 19:49:21 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-12-05 19:49:21 (GMT) |
commit | 45c088c2e729812794afc4c046bdeb96af9e8a61 (patch) | |
tree | 39c966b2c47db19f79b631f9103c66c9bc78d96c /Doc/c-api/refcounting.rst | |
parent | b8df156ab59a8b7853fcecb64294e22d37ea5b0a (diff) | |
download | cpython-45c088c2e729812794afc4c046bdeb96af9e8a61.zip cpython-45c088c2e729812794afc4c046bdeb96af9e8a61.tar.gz cpython-45c088c2e729812794afc4c046bdeb96af9e8a61.tar.bz2 |
Fix markup.
Diffstat (limited to 'Doc/c-api/refcounting.rst')
-rw-r--r-- | Doc/c-api/refcounting.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/c-api/refcounting.rst b/Doc/c-api/refcounting.rst index 9dc357f..d3fd47f 100644 --- a/Doc/c-api/refcounting.rst +++ b/Doc/c-api/refcounting.rst @@ -64,7 +64,7 @@ objects. .. versionadded:: 2.4 The following functions are for runtime dynamic embedding of Python: -``Py_IncRef(PyObject \*o)``, `Py_DecRef(PyObject \*o)``. They are +``Py_IncRef(PyObject *o)``, ``Py_DecRef(PyObject *o)``. They are simply exported function versions of :cfunc:`Py_XINCREF` and :cfunc:`Py_XDECREF`, respectively. |