diff options
| author | Yury Selivanov <yury@magic.io> | 2016-09-15 16:01:35 -0400 |
|---|---|---|
| committer | Yury Selivanov <yury@magic.io> | 2016-09-15 16:01:35 -0400 |
| commit | 62b81c33d146d4f5b36589a93736b57d604cf260 (patch) | |
| tree | ab7306eb66f88af858a181162a6d72201e0dce21 /Lib/asyncio/coroutines.py | |
| parent | 1b984ffd44f036cf5c0ce1933c0fb9ba6e94948a (diff) | |
| parent | 45dccdad93fbfa5c2b90a697b47d5286115827aa (diff) | |
| download | cpython-git-62b81c33d146d4f5b36589a93736b57d604cf260.tar.gz | |
Merge 3.5 (issue #26654)
Diffstat (limited to 'Lib/asyncio/coroutines.py')
| -rw-r--r-- | Lib/asyncio/coroutines.py | 2 |
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 |
