]> granicus.if.org Git - python/commitdiff
Correct the location of a function mentioned in a comment (GH-4327)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Thu, 9 Nov 2017 17:14:38 +0000 (09:14 -0800)
committerBerker Peksag <berker.peksag@gmail.com>
Thu, 9 Nov 2017 17:14:38 +0000 (20:14 +0300)
(cherry picked from commit 01ae58d44622a37304c74b2d8ed32e97a7fe1969)

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