https://github.com/python/cpython/commit/0c8c7fb2dc0076ef25fd01447ee21af21b35e5fd commit: 0c8c7fb2dc0076ef25fd01447ee21af21b35e5fd branch: 3.13 author: Miss Islington (bot) <31488909+miss-isling...@users.noreply.github.com> committer: vstinner <vstin...@python.org> date: 2025-08-11T11:25:13Z summary:
[3.13] Fix documentation of hash in PyHash_FuncDef (GH-137595) (#137643) Fix documentation of hash in PyHash_FuncDef (GH-137595) Because of a small typo, it wasn't showing up in the generated docs. (cherry picked from commit 70218b40082396d68c277667fc9bb7f87d095e3c) Co-authored-by: da-woods <dw-...@d-woods.co.uk> files: M Doc/c-api/hash.rst diff --git a/Doc/c-api/hash.rst b/Doc/c-api/hash.rst index 7345a048a4128b..314abdb1be05cd 100644 --- a/Doc/c-api/hash.rst +++ b/Doc/c-api/hash.rst @@ -51,7 +51,7 @@ See also the :c:member:`PyTypeObject.tp_hash` member and :ref:`numeric-hash`. Hash function definition used by :c:func:`PyHash_GetFuncDef`. - .. c::member:: Py_hash_t (*const hash)(const void *, Py_ssize_t) + .. c:member:: Py_hash_t (*const hash)(const void *, Py_ssize_t) Hash function. _______________________________________________ Python-checkins mailing list -- python-checkins@python.org To unsubscribe send an email to python-checkins-le...@python.org https://mail.python.org/mailman3//lists/python-checkins.python.org Member address: arch...@mail-archive.com