PEP 416: remove mentions of mutable/immutable

This commit is contained in:
Victor Stinner 2012-03-10 11:43:45 +01:00
parent 847564f3ea
commit ae97510b98
1 changed files with 2 additions and 3 deletions

View File

@ -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: