PEP 416: remove mentions of mutable/immutable
This commit is contained in:
parent
847564f3ea
commit
ae97510b98
|
@ -20,9 +20,8 @@ Rationale
|
|||
=========
|
||||
|
||||
A frozendict is a read-only mapping: a key cannot be added nor removed, and a
|
||||
key is always mapped to the same value. However, frozendict values can be
|
||||
mutable (not hashable). A frozendict is hashable and so immutable if and only
|
||||
if all values are hashable (immutable).
|
||||
key is always mapped to the same value. However, frozendict values can be not
|
||||
hashable. A frozendict is hashable if and only if all values are hashable.
|
||||
|
||||
Use cases:
|
||||
|
||||
|
|
Loading…
Reference in New Issue