This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients vstinner
Date 2019-06-17.20:50:02
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1560804602.3.0.641265473536.issue37323@roundup.psfhosted.org>
In-reply-to
Content
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")
History
Date User Action Args
2019-06-17 20:50:02vstinnersetrecipients: + vstinner
2019-06-17 20:50:02vstinnersetmessageid: <1560804602.3.0.641265473536.issue37323@roundup.psfhosted.org>
2019-06-17 20:50:02vstinnerlinkissue37323 messages
2019-06-17 20:50:02vstinnercreate