diff options
author | Senthil Kumaran <senthil@uthcode.com> | 2012-03-12 04:04:05 (GMT) |
---|---|---|
committer | Senthil Kumaran <senthil@uthcode.com> | 2012-03-12 04:04:05 (GMT) |
commit | 814d31688802ec24787d159457fbb92e4569b130 (patch) | |
tree | 07fd8d89ca072b699fded297b28a0d7c09ccb26e | |
parent | 15b6f3f825ed435522c6775bfe600f5a8e7cd437 (diff) | |
download | cpython-814d31688802ec24787d159457fbb92e4569b130.zip cpython-814d31688802ec24787d159457fbb92e4569b130.tar.gz cpython-814d31688802ec24787d159457fbb92e4569b130.tar.bz2 |
closes issue14257 minor error in glossary wording regarding __hash__
-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 36a912c..dca4de7 100644 --- a/Doc/glossary.rst +++ b/Doc/glossary.rst @@ -153,7 +153,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 |