summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2024-06-04 07:26:25 (GMT)
committerGitHub <noreply@github.com>2024-06-04 07:26:25 (GMT)
commit1177897551066c1e8c394809152614a6483f9ce7 (patch)
tree62a6fbb373e0bf83932bc192caaaa8cf321bd3de /Misc
parent6be55f1bedcd076c12d00bf061bbcffc4ed8073a (diff)
downloadcpython-1177897551066c1e8c394809152614a6483f9ce7.zip
cpython-1177897551066c1e8c394809152614a6483f9ce7.tar.gz
cpython-1177897551066c1e8c394809152614a6483f9ce7.tar.bz2
[3.13] gh-111389: Add PyHASH_MULTIPLIER constant (GH-119214) (#119334)
gh-111389: Add PyHASH_MULTIPLIER constant (GH-119214) (cherry picked from commit f6da790122fdae1a28f444edfbb55202d6829cd1) Co-authored-by: Victor Stinner <vstinner@python.org>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/C API/2024-05-20-10-35-22.gh-issue-111389.a6axBk.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/C API/2024-05-20-10-35-22.gh-issue-111389.a6axBk.rst b/Misc/NEWS.d/next/C API/2024-05-20-10-35-22.gh-issue-111389.a6axBk.rst
new file mode 100644
index 0000000..f47662f
--- /dev/null
+++ b/Misc/NEWS.d/next/C API/2024-05-20-10-35-22.gh-issue-111389.a6axBk.rst
@@ -0,0 +1,2 @@
+Add :c:macro:`PyHASH_MULTIPLIER` constant: prime multiplier used in string
+and various other hashes. Patch by Victor Stinner.