commit | f5b62a9b314e71e6bd5014be92ad1d10ff8e0d63 | [log] [tgz] |
---|---|---|
author | Gregory P. Smith <greg@krypto.org> | Sat Jan 14 15:45:13 2012 -0800 |
committer | Gregory P. Smith <greg@krypto.org> | Sat Jan 14 15:45:13 2012 -0800 |
tree | feb12ee5852eb7674802e9de3c2ef9c32c4f9ee6 | |
parent | d66b5051551b1d5199aaf5d30368d22232f49524 [diff] [blame] | |
parent | 63e6c3222f563cfb156de6e92199e9e35ad5d832 [diff] [blame] |
Consolidate the occurrances of the prime used as the multiplier when hashing.
diff --git a/Objects/object.c b/Objects/object.c index 9060c82..441068d 100644 --- a/Objects/object.c +++ b/Objects/object.c
@@ -761,7 +761,7 @@ x = (Py_uhash_t) *p << 7; for (i = 0; i < len; i++) - x = (1000003U * x) ^ (Py_uhash_t) *p++; + x = (_PyHASH_MULTIPLIER * x) ^ (Py_uhash_t) *p++; x ^= (Py_uhash_t) len; if (x == -1) x = -2;