From ae97510b98d3fa0777ead32192c5697347ef9266 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Sat, 10 Mar 2012 11:43:45 +0100 Subject: [PATCH] PEP 416: remove mentions of mutable/immutable --- pep-0416.txt | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pep-0416.txt b/pep-0416.txt index 1ad829586..51423e133 100644 --- a/pep-0416.txt +++ b/pep-0416.txt @@ -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: