Skip to content

Commit 39d091f

Browse files
committed
Fix typing
1 parent d5946d4 commit 39d091f

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

Lib/test/test_typing.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4091,8 +4091,6 @@ class MyChain(typing.ChainMap[str, T]): ...
40914091
self.assertIs(MyChain[int]().__class__, MyChain)
40924092
self.assertEqual(MyChain[int]().__orig_class__, MyChain[int])
40934093

4094-
# TODO: RUSTPYTHON
4095-
@unittest.expectedFailure
40964094
def test_all_repr_eq_any(self):
40974095
objs = (getattr(typing, el) for el in typing.__all__)
40984096
for obj in objs:
@@ -9591,8 +9589,6 @@ def test_all(self):
95919589
self.assertIn('SupportsBytes', a)
95929590
self.assertIn('SupportsComplex', a)
95939591

9594-
# TODO: RUSTPYTHON
9595-
@unittest.expectedFailure
95969592
def test_all_exported_names(self):
95979593
# ensure all dynamically created objects are actualised
95989594
for name in typing.__all__:

0 commit comments

Comments
 (0)