mirror of
https://github.com/python/cpython.git
synced 2026-01-06 15:32:22 +00:00
Fix typo in __slots__ of ImmutableSet.
This commit is contained in:
parent
d8ab35c933
commit
0b650d7565
1 changed files with 1 additions and 1 deletions
|
|
@ -273,7 +273,7 @@ def _compute_hash(self):
|
|||
class ImmutableSet(BaseSet):
|
||||
"""Immutable set class."""
|
||||
|
||||
__slots__ = ['_hash']
|
||||
__slots__ = ['_hashcode']
|
||||
|
||||
# BaseSet + hashing
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue