diff options
author | Victor Stinner <vstinner@python.org> | 2023-12-03 11:21:48 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-03 11:21:48 (GMT) |
commit | a971574b73140b6badf9442a5b954eab766a082c (patch) | |
tree | df222f8d9ee7f74f6b90515bfc310a3ebd3608b1 /Doc/c-api | |
parent | d9e444dbb86e173ee5b8491e3facbd447b91eaed (diff) | |
download | cpython-a971574b73140b6badf9442a5b954eab766a082c.zip cpython-a971574b73140b6badf9442a5b954eab766a082c.tar.gz cpython-a971574b73140b6badf9442a5b954eab766a082c.tar.bz2 |
gh-111545: Mention PEP 456 in PyHash_GetFuncDef() doc (#112647)
Diffstat (limited to 'Doc/c-api')
-rw-r--r-- | Doc/c-api/hash.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/c-api/hash.rst b/Doc/c-api/hash.rst index 4dc121d..3bfaf8b 100644 --- a/Doc/c-api/hash.rst +++ b/Doc/c-api/hash.rst @@ -45,4 +45,7 @@ See also the :c:member:`PyTypeObject.tp_hash` member. Get the hash function definition. + .. seealso:: + :pep:`456` "Secure and interchangeable hash algorithm". + .. versionadded:: 3.4 |