We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b13add2 commit 390119dCopy full SHA for 390119d
Objects/dictobject.c
@@ -7907,7 +7907,7 @@ frozendict_hash(PyObject *op)
7907
/* Factor in the number of active entries */
7908
hash ^= ((Py_uhash_t)mp->ma_used + 1) * 1927868237UL;
7909
7910
- /* Disperse patterns arising in nested frozensets */
+ /* Disperse patterns arising in nested frozendicts */
7911
hash ^= (hash >> 11) ^ (hash >> 25);
7912
hash = hash * 69069U + 907133923UL;
7913
0 commit comments