We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a7e0ee commit 99873e8Copy full SHA for 99873e8
1 file changed
Lib/concurrent/interpreters/_crossinterp.py
@@ -68,17 +68,6 @@ def __repr__(self):
68
return f'{self._MODULE}.{self._NAME}'
69
# return f'interpreters._queues.UNBOUND'
70
71
- def __hash__(self):
72
- return hash((self._NAME, self._MODULE))
73
-
74
- def __reduce__(self):
75
- return self._NAME
76
77
- def __eq__(self, other):
78
- if other is self:
79
- return True
80
- return repr(other) == repr(self)
81
82
83
UNBOUND = object.__new__(UnboundItem)
84
UNBOUND_ERROR = object()
0 commit comments