summaryrefslogtreecommitdiff
path: root/Lib/asyncio/coroutines.py
diff options
context:
space:
mode:
authorYury Selivanov <yury@magic.io>2016-09-15 16:01:35 -0400
committerYury Selivanov <yury@magic.io>2016-09-15 16:01:35 -0400
commit62b81c33d146d4f5b36589a93736b57d604cf260 (patch)
treeab7306eb66f88af858a181162a6d72201e0dce21 /Lib/asyncio/coroutines.py
parent1b984ffd44f036cf5c0ce1933c0fb9ba6e94948a (diff)
parent45dccdad93fbfa5c2b90a697b47d5286115827aa (diff)
downloadcpython-git-62b81c33d146d4f5b36589a93736b57d604cf260.tar.gz
Merge 3.5 (issue #26654)
Diffstat (limited to 'Lib/asyncio/coroutines.py')
-rw-r--r--Lib/asyncio/coroutines.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/asyncio/coroutines.py b/Lib/asyncio/coroutines.py
index 72ffb44e95..e013d64edf 100644
--- a/Lib/asyncio/coroutines.py
+++ b/Lib/asyncio/coroutines.py
@@ -271,7 +271,7 @@ def _format_coroutine(coro):
func = coro
if coro_name is None:
- coro_name = events._format_callback(func, ())
+ coro_name = events._format_callback(func, (), {})
try:
coro_code = coro.gi_code