summaryrefslogtreecommitdiffstats
path: root/Objects/tupleobject.c
diff options
context:
space:
mode:
Diffstat (limited to 'Objects/tupleobject.c')
-rw-r--r--Objects/tupleobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/tupleobject.c b/Objects/tupleobject.c
index 54a580d..d58839e 100644
--- a/Objects/tupleobject.c
+++ b/Objects/tupleobject.c
@@ -316,7 +316,7 @@ tuplehash(PyTupleObject *v)
register Py_hash_t y;
register Py_ssize_t len = Py_SIZE(v);
register PyObject **p;
- Py_uhash_t mult = 1000003;
+ Py_uhash_t mult = _PyHASH_MULTIPLIER;
x = 0x345678;
p = v->ob_item;
while (--len >= 0) {