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 @@ -467,9 +467,9 @@ Glossary
467
467
Hashability makes an object usable as a dictionary key and a set member,
468
468
because these data structures use the hash value internally.
469
469
470
- All of Python's immutable built-in objects are hashable, while no mutable
471
- containers (such as lists or dictionaries) are. Objects which are
472
- instances of user-defined classes are hashable by default; they all
470
+ All of Python's immutable built-in objects are hashable; mutable
471
+ containers (such as lists or dictionaries) are not . Objects which are
472
+ instances of user-defined classes are hashable by default. They all
473
473
compare unequal (except with themselves), and their hash value is derived
474
474
from their :func: `id `.
475
475
You can’t perform that action at this time.
0 commit comments