From 0b650d756572e33c923eb4998224da2d95dffaac Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Mon, 19 Aug 2002 16:29:58 +0000 Subject: Fix typo in __slots__ of ImmutableSet. --- Lib/sets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/sets.py b/Lib/sets.py index 1072dd2..2d44c28 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 -- cgit v0.12