diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2023-07-26 19:16:06 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-26 19:16:06 (GMT) |
commit | af61cb9c7837ff3c11da79e3ee1cab3fdd0ba4da (patch) | |
tree | dc29e16249e0cffab635260f81deccf6e316a257 /Doc/c-api/typeobj.rst | |
parent | 737d1da0746053d515158eac5b115e8bd813f6d3 (diff) | |
download | cpython-af61cb9c7837ff3c11da79e3ee1cab3fdd0ba4da.zip cpython-af61cb9c7837ff3c11da79e3ee1cab3fdd0ba4da.tar.gz cpython-af61cb9c7837ff3c11da79e3ee1cab3fdd0ba4da.tar.bz2 |
gh-107091: Fix some uses of :c:member: role (GH-107129)
Diffstat (limited to 'Doc/c-api/typeobj.rst')
-rw-r--r-- | Doc/c-api/typeobj.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/c-api/typeobj.rst b/Doc/c-api/typeobj.rst index c0f0d78..a070c41 100644 --- a/Doc/c-api/typeobj.rst +++ b/Doc/c-api/typeobj.rst @@ -1176,7 +1176,7 @@ and :c:type:`PyType_Type` effectively act as defaults.) .. c:macro:: Py_TPFLAGS_ITEMS_AT_END Only usable with variable-size types, i.e. ones with non-zero - :c:member:`~PyObject.tp_itemsize`. + :c:member:`~PyTypeObject.tp_itemsize`. Indicates that the variable-sized portion of an instance of this type is at the end of the instance's memory area, at an offset of |