asyncio: sync with github asyncio

* queues: get coroutine from asyncio.coroutines, not from asyncio.tasks
* tets: replace tulip with asyncio in comments
This commit is contained in:
Victor Stinner 2015-07-09 23:13:50 +02:00
parent af320b389b
commit e6ecea53c8
5 changed files with 10 additions and 8 deletions

View file

@ -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):