diff options
author | Julien Palard <julien@palard.fr> | 2022-05-13 12:10:16 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-13 12:10:16 (GMT) |
commit | 664aa94b570a4a8f3535efb2e3d638a4ab655943 (patch) | |
tree | ea9539bab4dff8373927dd6363f56555607f4a13 /Doc/c-api/object.rst | |
parent | 059b5baf98c9503d9d59c79fba117826caa5a3e1 (diff) | |
download | cpython-664aa94b570a4a8f3535efb2e3d638a4ab655943.zip cpython-664aa94b570a4a8f3535efb2e3d638a4ab655943.tar.gz cpython-664aa94b570a4a8f3535efb2e3d638a4ab655943.tar.bz2 |
Document Py_ssize_t. (GH-92512)
It fixes 252 errors from a Sphinx nitpicky run (sphinx-build -n). But
there's 8182 errors left.
Co-authored-by: Ezio Melotti <ezio.melotti@gmail.com>
Diffstat (limited to 'Doc/c-api/object.rst')
-rw-r--r-- | Doc/c-api/object.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/c-api/object.rst b/Doc/c-api/object.rst index 9dcfd76..07a625b 100644 --- a/Doc/c-api/object.rst +++ b/Doc/c-api/object.rst @@ -258,7 +258,7 @@ Object Protocol .. versionchanged:: 3.2 The return type is now Py_hash_t. This is a signed integer the same size - as Py_ssize_t. + as :c:type:`Py_ssize_t`. .. c:function:: Py_hash_t PyObject_HashNotImplemented(PyObject *o) |