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 90724b3 commit df363c0Copy full SHA for df363c0
Lib/test/test_typing.py
@@ -1466,6 +1466,10 @@ def __new__(cls, *args):
1466
with self.assertRaises(TypeError):
1467
C[int](a=42)
1468
1469
+ # TODO: RUSTPYTHON the last line breaks any tests that use unittest.mock
1470
+ # See https://github.com/RustPython/RustPython/issues/5190#issuecomment-2010535802
1471
+ # It's possible that updating typing to 3.12 will resolve this
1472
+ @unittest.skip("TODO: RUSTPYTHON this test breaks other tests that use unittest.mock")
1473
def test_protocols_bad_subscripts(self):
1474
T = TypeVar('T')
1475
S = TypeVar('S')
0 commit comments