diff options
author | Raymond Hettinger <python@rcn.com> | 2015-01-31 02:02:15 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2015-01-31 02:02:15 (GMT) |
commit | 06a1c8dfa08c5314d4dfa1c6233843dc777a860e (patch) | |
tree | b5e12752268dd85854bcab1cc60e75bc98af3b06 /Objects | |
parent | 9d4cbcc86bbef64ec00ba4987b5fc35e3a5f433d (diff) | |
download | cpython-06a1c8dfa08c5314d4dfa1c6233843dc777a860e.zip cpython-06a1c8dfa08c5314d4dfa1c6233843dc777a860e.tar.gz cpython-06a1c8dfa08c5314d4dfa1c6233843dc777a860e.tar.bz2 |
Fix typo in a comment.
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/setobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/setobject.c b/Objects/setobject.c index d36bc0b..2c38bf3 100644 --- a/Objects/setobject.c +++ b/Objects/setobject.c @@ -681,7 +681,7 @@ frozenset_hash(PyObject *self) hash *= (Py_uhash_t)PySet_GET_SIZE(self) + 1; while (set_next(so, &pos, &entry)) { /* Work to increase the bit dispersion for closely spaced hash - values. The is important because some use cases have many + values. This is important because some use cases have many combinations of a small number of elements with nearby hashes so that many distinct combinations collapse to only a handful of distinct hash values. */ |