summaryrefslogtreecommitdiffstats
path: root/Include/pyhash.h
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2017-11-09 16:55:34 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2017-11-09 16:55:34 (GMT)
commit01ae58d44622a37304c74b2d8ed32e97a7fe1969 (patch)
tree4a69f83c033efe36678a6d36deb46f2e601a8c3d /Include/pyhash.h
parentd3187158c09cf899e9849f335bdff10594209167 (diff)
downloadcpython-01ae58d44622a37304c74b2d8ed32e97a7fe1969.zip
cpython-01ae58d44622a37304c74b2d8ed32e97a7fe1969.tar.gz
cpython-01ae58d44622a37304c74b2d8ed32e97a7fe1969.tar.bz2
Correct the location of a function mentioned in a comment (GH-4327)
Diffstat (limited to 'Include/pyhash.h')
-rw-r--r--Include/pyhash.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/pyhash.h b/Include/pyhash.h
index a814af6..9cfd071 100644
--- a/Include/pyhash.h
+++ b/Include/pyhash.h
@@ -16,7 +16,7 @@ PyAPI_FUNC(Py_hash_t) _Py_HashBytes(const void*, Py_ssize_t);
#define _PyHASH_MULTIPLIER 1000003UL /* 0xf4243 */
/* Parameters used for the numeric hash implementation. See notes for
- _Py_HashDouble in Objects/object.c. Numeric hashes are based on
+ _Py_HashDouble in Python/pyhash.c. Numeric hashes are based on
reduction modulo the prime 2**_PyHASH_BITS - 1. */
#if SIZEOF_VOID_P >= 8