STINNER Victor <vstin...@redhat.com> added the comment:
def test_debug_mode_interop(self): # https://bugs.python.org/issue32636 code = textwrap.dedent(""" import asyncio async def native_coro(): pass @asyncio.coroutine def old_style_coro(): yield from native_coro() asyncio.run(old_style_coro()) """) assert_python_ok("-c", code, PYTHONASYNCIODEBUG="1") ---------- _______________________________________ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue37323> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com