commit | 0b650d756572e33c923eb4998224da2d95dffaac | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Mon Aug 19 16:29:58 2002 +0000 |
committer | Guido van Rossum <guido@python.org> | Mon Aug 19 16:29:58 2002 +0000 |
tree | a066929c665934d908978b7edc0ad9ce6e30785e | |
parent | d8ab35c933ec8f19dc119a67af896973a3849663 [diff] |
Fix typo in __slots__ of ImmutableSet.
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 ImmutableSet(BaseSet): """Immutable set class.""" - __slots__ = ['_hash'] + __slots__ = ['_hashcode'] # BaseSet + hashing