From: Ned Batchelder Date: Thu, 9 Nov 2017 16:55:34 +0000 (-0500) Subject: Correct the location of a function mentioned in a comment (GH-4327) X-Git-Tag: v3.7.0a3~200 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=01ae58d44622a37304c74b2d8ed32e97a7fe1969;p=thirdparty%2FPython%2Fcpython.git Correct the location of a function mentioned in a comment (GH-4327) --- diff --git a/Include/pyhash.h b/Include/pyhash.h index a814af678673..9cfd071ea17b 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