Commit 097a49e3 authored by Yury Selivanov's avatar Yury Selivanov

Merge heads 3.6

parents 4af23d7d b26067a9
......@@ -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