We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6021e1b commit f3cc1a5Copy full SHA for f3cc1a5
Lib/test/test_asyncio/test_futures2.py
@@ -69,11 +69,11 @@ def callback():
69
await asyncio.sleep(0)
70
self.assertTrue(exc_handler_called)
71
72
-@unittest.skip('TODO: RUSTPYTHON: CPython specific test')
73
-@unittest.skipUnless(hasattr(tasks, '_CTask'),
74
- 'requires the C _asyncio module')
75
-class CFutureTests(FutureTests, unittest.IsolatedAsyncioTestCase):
76
- cls = tasks._CTask
+# TODO: RUSTPYTHON; Crashes the test
+# @unittest.skipUnless(hasattr(tasks, '_CTask'),
+# 'requires the C _asyncio module')
+# class CFutureTests(FutureTests, unittest.IsolatedAsyncioTestCase):
+# cls = tasks._CTask
77
78
class PyFutureTests(FutureTests, unittest.IsolatedAsyncioTestCase):
79
cls = tasks._PyTask
0 commit comments