Commit e2f12909 authored by Yury Selivanov's avatar Yury Selivanov

asyncio: Drop debug code

parent bf995504
......@@ -276,10 +276,7 @@ def _format_coroutine(coro):
try:
coro_code = coro.gi_code
except AttributeError:
try:
coro_code = coro.cr_code
except AttributeError:
return repr(coro)
coro_code = coro.cr_code
try:
coro_frame = coro.gi_frame
......
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