diff options
author | Victor Stinner <vstinner@python.org> | 2022-05-18 12:09:44 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-18 12:09:44 (GMT) |
commit | e0477ae371d983bec07b3dc75e6426785592f2d4 (patch) | |
tree | 09e1541d651bd7520d4b4488d081dfdbc1ebeeb5 /Doc | |
parent | 7ee19e27150a72eec9e6a076792e3c3ae8bcffbd (diff) | |
download | cpython-e0477ae371d983bec07b3dc75e6426785592f2d4.zip cpython-e0477ae371d983bec07b3dc75e6426785592f2d4.tar.gz cpython-e0477ae371d983bec07b3dc75e6426785592f2d4.tar.bz2 |
gh-91755: Remove doc of C API private refcount functions (#92918)
These functions should only be used by Python internals.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/c-api/refcounting.rst | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Doc/c-api/refcounting.rst b/Doc/c-api/refcounting.rst index 738bd77..1cff4e7 100644 --- a/Doc/c-api/refcounting.rst +++ b/Doc/c-api/refcounting.rst @@ -119,9 +119,3 @@ objects. Decrement the reference count for object *o*. A function version of :c:func:`Py_XDECREF`. It can be used for runtime dynamic embedding of Python. - - -The following functions or macros are only for use within the interpreter core: -:c:func:`_Py_Dealloc`, :c:func:`_Py_ForgetReference`, :c:func:`_Py_NewReference`, -as well as the global variable :c:data:`_Py_RefTotal`. - |