Skip to content

Commit f3cc1a5

Browse files
committed
Commented out a crashing test
1 parent 6021e1b commit f3cc1a5

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Lib/test/test_asyncio/test_futures2.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -69,11 +69,11 @@ def callback():
6969
await asyncio.sleep(0)
7070
self.assertTrue(exc_handler_called)
7171

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
72+
# TODO: RUSTPYTHON; Crashes the test
73+
# @unittest.skipUnless(hasattr(tasks, '_CTask'),
74+
# 'requires the C _asyncio module')
75+
# class CFutureTests(FutureTests, unittest.IsolatedAsyncioTestCase):
76+
# cls = tasks._CTask
7777

7878
class PyFutureTests(FutureTests, unittest.IsolatedAsyncioTestCase):
7979
cls = tasks._PyTask

0 commit comments

Comments
 (0)