summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio/coroutines.py
diff options
context:
space:
mode:
authorYury Selivanov <yury@magic.io>2016-09-15 20:01:35 (GMT)
committerYury Selivanov <yury@magic.io>2016-09-15 20:01:35 (GMT)
commit62b81c33d146d4f5b36589a93736b57d604cf260 (patch)
treeab7306eb66f88af858a181162a6d72201e0dce21 /Lib/asyncio/coroutines.py
parent1b984ffd44f036cf5c0ce1933c0fb9ba6e94948a (diff)
parent45dccdad93fbfa5c2b90a697b47d5286115827aa (diff)
downloadcpython-62b81c33d146d4f5b36589a93736b57d604cf260.zip
cpython-62b81c33d146d4f5b36589a93736b57d604cf260.tar.gz
cpython-62b81c33d146d4f5b36589a93736b57d604cf260.tar.bz2
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 72ffb44..e013d64 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