commit | e6ecea53c8394b5101bb3ddab3216a948065ef97 | [log] [tgz] |
---|---|---|
author | Victor Stinner <victor.stinner@gmail.com> | Thu Jul 09 23:13:50 2015 +0200 |
committer | Victor Stinner <victor.stinner@gmail.com> | Thu Jul 09 23:13:50 2015 +0200 |
tree | 225a711992ec59273d9a1f6d75b8a19c64959137 | |
parent | af320b389bba5221870553e70eaefee3bdf860e5 [diff] [blame] |
asyncio: sync with github asyncio * queues: get coroutine from asyncio.coroutines, not from asyncio.tasks * tets: replace tulip with asyncio in comments
diff --git a/Lib/asyncio/queues.py b/Lib/asyncio/queues.py index ed11662..3b4dc21 100644 --- a/Lib/asyncio/queues.py +++ b/Lib/asyncio/queues.py
@@ -9,7 +9,7 @@ from . import events from . import futures from . import locks -from .tasks import coroutine +from .coroutines import coroutine class QueueEmpty(Exception):