File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -434,9 +434,9 @@ Glossary
434
434
Hashability makes an object usable as a dictionary key and a set member,
435
435
because these data structures use the hash value internally.
436
436
437
- All of Python's immutable built-in objects are hashable, while no mutable
438
- containers (such as lists or dictionaries) are. Objects which are
439
- instances of user-defined classes are hashable by default; they all
437
+ All of Python's immutable built-in objects are hashable; mutable
438
+ containers (such as lists or dictionaries) are not . Objects which are
439
+ instances of user-defined classes are hashable by default. They all
440
440
compare unequal (except with themselves), and their hash value is derived
441
441
from their :func: `id `.
442
442
You can’t perform that action at this time.
0 commit comments