diff options
author | Gregory P. Smith <greg@krypto.org> | 2012-01-14 15:31:34 -0800 |
---|---|---|
committer | Gregory P. Smith <greg@krypto.org> | 2012-01-14 15:31:34 -0800 |
commit | 63e6c3222f563cfb156de6e92199e9e35ad5d832 (patch) | |
tree | af145dbe59f9ec446a9892e94064bf6b989c4086 /Objects/bytesobject.c | |
parent | 515687a7eda26d733c747e08205a1d861bc70673 (diff) | |
download | cpython-git-63e6c3222f563cfb156de6e92199e9e35ad5d832.tar.gz |
Consolidate the occurrances of the prime used as the multiplier when hashing
to a single #define instead of having several copies in several files.
This excludes the Modules/ tree (datetime and expat both have a copy
for their own purposes with no need for it to be the same).
Diffstat (limited to 'Objects/bytesobject.c')
-rw-r--r-- | Objects/bytesobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/bytesobject.c b/Objects/bytesobject.c index b10cb5d3de..8249e5f6df 100644 --- a/Objects/bytesobject.c +++ b/Objects/bytesobject.c @@ -881,7 +881,7 @@ bytes_hash(PyBytesObject *a) p = (unsigned char *) a->ob_sval; x = *p << 7; while (--len >= 0) - x = (1000003*x) ^ *p++; + x = (_PyHASH_MULTIPLIER*x) ^ *p++; x ^= Py_SIZE(a); if (x == -1) x = -2; |