]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Correct the location of a function mentioned in a comment (GH-4327)
authorNed Batchelder <ned@nedbatchelder.com>
Thu, 9 Nov 2017 16:55:34 +0000 (11:55 -0500)
committerBerker Peksag <berker.peksag@gmail.com>
Thu, 9 Nov 2017 16:55:34 +0000 (19:55 +0300)
Include/pyhash.h

index a814af6786738ab3cebf81a2e5343856772c708b..9cfd071ea17ba8d80360dea4a7f5c7fd25e44b74 100644 (file)
@@ -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