Skip to content

Commit

Permalink
bpo-32636: Fix @asyncio.coroutine debug mode bug exposed by gh-5250 (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
njsmith authored and 1st1 committed Jan 24, 2018
1 parent 0a5e71b commit fb5a7ad
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Lib/asyncio/coroutines.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,9 @@ def coro(*args, **kw):
res = yield from await_meth()
return res

coro = types.coroutine(coro)
if not _DEBUG:
wrapper = types.coroutine(coro)
wrapper = coro
else:
@functools.wraps(func)
def wrapper(*args, **kwds):
Expand Down
17 changes: 17 additions & 0 deletions Lib/test/test_asyncio/test_tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
import random
import re
import sys
import textwrap
import types
import unittest
import weakref
Expand Down Expand Up @@ -3090,6 +3091,22 @@ async def inner():
result = self.loop.run_until_complete(inner())
self.assertEqual(['ok1', 'ok2'], result)

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")


if __name__ == '__main__':
unittest.main()

0 comments on commit fb5a7ad

Please sign in to comment.