diff options
author | Senthil Kumaran <senthil@uthcode.com> | 2012-03-12 04:06:03 (GMT) |
---|---|---|
committer | Senthil Kumaran <senthil@uthcode.com> | 2012-03-12 04:06:03 (GMT) |
commit | 68e994e9e4a30fd3195b6cca46ff057f43021fc8 (patch) | |
tree | 6d40353e38e9b89187a77f36229d444405601777 /Doc/glossary.rst | |
parent | b69ef16fe63e6de91c5d659bd83d9eff67b38d98 (diff) | |
parent | a7fccd8b14885a76525e11baa1f9db7792d9a26c (diff) | |
download | cpython-68e994e9e4a30fd3195b6cca46ff057f43021fc8.zip cpython-68e994e9e4a30fd3195b6cca46ff057f43021fc8.tar.gz cpython-68e994e9e4a30fd3195b6cca46ff057f43021fc8.tar.bz2 |
closes issue14257 - cpython - minor error in glossary wording regarding __hash__
Diffstat (limited to 'Doc/glossary.rst')
-rw-r--r-- | Doc/glossary.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/glossary.rst b/Doc/glossary.rst index f5ca0d9..3ac1031 100644 --- a/Doc/glossary.rst +++ b/Doc/glossary.rst @@ -147,7 +147,7 @@ Glossary dictionary An associative array, where arbitrary keys are mapped to values. The keys - can be any object with :meth:`__hash__` function and :meth:`__eq__` + can be any object with :meth:`__hash__` method and :meth:`__eq__` methods. Called a hash in Perl. docstring |