Consolidate the occurrances of the prime used as the multiplier when hashing.
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 @@
     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) {