From e6ecea53c8394b5101bb3ddab3216a948065ef97 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Thu, 9 Jul 2015 23:13:50 +0200 Subject: asyncio: sync with github asyncio * queues: get coroutine from asyncio.coroutines, not from asyncio.tasks * tets: replace tulip with asyncio in comments --- Lib/asyncio/queues.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/asyncio/queues.py') diff --git a/Lib/asyncio/queues.py b/Lib/asyncio/queues.py index ed116620b4..3b4dc21ab8 100644 --- a/Lib/asyncio/queues.py +++ b/Lib/asyncio/queues.py @@ -9,7 +9,7 @@ import heapq from . import events from . import futures from . import locks -from .tasks import coroutine +from .coroutines import coroutine class QueueEmpty(Exception): -- cgit v1.2.1