Fix typo in __slots__ of ImmutableSet.

This commit is contained in:
Guido van Rossum 2002-08-19 16:29:58 +00:00
parent d8ab35c933
commit 0b650d7565

View file

@ -273,7 +273,7 @@ def _compute_hash(self):
class ImmutableSet(BaseSet):
"""Immutable set class."""
__slots__ = ['_hash']
__slots__ = ['_hashcode']
# BaseSet + hashing