Commit 9ee3d69a authored by Stefan Behnel's avatar Stefan Behnel

disable two tests for minor quirks in PEP 492 that Cython doesn't currently implement

parent a9365c2e
......@@ -177,7 +177,8 @@ class CoroutineTest(unittest.TestCase):
def bar(): pass
self.assertFalse(bool(bar.__code__.co_flags & 0x80))
def test_func_2(self):
# TODO
def __test_func_2(self):
async def foo():
raise StopIteration
......@@ -259,7 +260,8 @@ class CoroutineTest(unittest.TestCase):
with self.assertRaises(StopIteration):
f.send(None)
def test_func_7(self):
# TODO
def __test_func_7(self):
async def bar():
return 10
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment