[Python-checkins] cpython (merge 3.2 -> default): closes issue14257 - cpython - minor error in glossary wording regarding __hash__

senthil.kumaran python-checkins at python.org
Mon Mar 12 05:06:17 CET 2012


http://hg.python.org/cpython/rev/2b7c39db2150
changeset:   75533:2b7c39db2150
parent:      75525:f452d7d5470d
parent:      75532:3f15c069454d
user:        Senthil Kumaran <senthil at uthcode.com>
date:        Sun Mar 11 21:06:03 2012 -0700
summary:
  closes issue14257 - cpython - minor error in glossary wording regarding __hash__

files:
  Doc/glossary.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/glossary.rst b/Doc/glossary.rst
--- a/Doc/glossary.rst
+++ b/Doc/glossary.rst
@@ -147,7 +147,7 @@
 
    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

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list