]> granicus.if.org Git - python/commitdiff
bpo-26947: DOC: clarify wording on hashable in glossary (#948)
authorcsabella <chekat2@gmail.com>
Sun, 2 Apr 2017 02:50:47 +0000 (22:50 -0400)
committerSenthil Kumaran <skumaran@gatech.edu>
Sun, 2 Apr 2017 02:50:47 +0000 (19:50 -0700)
Doc/glossary.rst

index 81238414efe49d805931c5c5271491cc9efcc8af..dba9186d935a6a8bbac3b02ca5abb5867c66a6ab 100644 (file)
@@ -467,9 +467,9 @@ Glossary
       Hashability makes an object usable as a dictionary key and a set member,
       because these data structures use the hash value internally.
 
-      All of Python's immutable built-in objects are hashable, while no mutable
-      containers (such as lists or dictionaries) are.  Objects which are
-      instances of user-defined classes are hashable by default; they all
+      All of Python's immutable built-in objects are hashable; mutable
+      containers (such as lists or dictionaries) are not.  Objects which are
+      instances of user-defined classes are hashable by default.  They all
       compare unequal (except with themselves), and their hash value is derived
       from their :func:`id`.