From: Guido van Rossum Date: Mon, 19 Aug 2002 16:29:58 +0000 (+0000) Subject: Fix typo in __slots__ of ImmutableSet. X-Git-Tag: v2.3c1~4406 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0b650d756572e33c923eb4998224da2d95dffaac;p=python Fix typo in __slots__ of ImmutableSet. --- diff --git a/Lib/sets.py b/Lib/sets.py index 1072dd2946..2d44c28666 100644 --- a/Lib/sets.py +++ b/Lib/sets.py @@ -273,7 +273,7 @@ class BaseSet(object): class ImmutableSet(BaseSet): """Immutable set class.""" - __slots__ = ['_hash'] + __slots__ = ['_hashcode'] # BaseSet + hashing