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 30057a5 commit c4deb03Copy full SHA for c4deb03
1 file changed
Lib/test/test_sys.py
@@ -1876,7 +1876,10 @@ class S(set):
1876
check(S(), set(), '3P')
1877
class FS(frozenset):
1878
__slots__ = 'a', 'b', 'c'
1879
- check(FS(), frozenset(), '3P')
+
1880
+ class mytuple(tuple):
1881
+ pass
1882
+ check(FS([mytuple()]), frozenset([mytuple()]), '3P')
1883
from collections import OrderedDict
1884
class OD(OrderedDict):
1885
0 commit comments