[Python-checkins] Correct the location of a function mentioned in a comment (GH-4327)

Berker Peksag webhook-mailer at python.org
Thu Nov 9 12:14:41 EST 2017


https://github.com/python/cpython/commit/726467616f6810a76d903683c0a734c1897ceae2
commit: 726467616f6810a76d903683c0a734c1897ceae2
branch: 3.6
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: Berker Peksag <berker.peksag at gmail.com>
date: 2017-11-09T20:14:38+03:00
summary:

Correct the location of a function mentioned in a comment (GH-4327)

(cherry picked from commit 01ae58d44622a37304c74b2d8ed32e97a7fe1969)

files:
M Include/pyhash.h

diff --git a/Include/pyhash.h b/Include/pyhash.h
index a814af67867..9cfd071ea17 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



More information about the Python-checkins mailing list