Issue #27041: asyncio: Add loop.create_future method

This commit is contained in:
Yury Selivanov 2016-05-16 15:38:39 -04:00
parent 7ed7ce6ee7
commit 7661db6228
14 changed files with 55 additions and 39 deletions

View file

@ -266,6 +266,9 @@ class AbstractEventLoop:
def time(self):
raise NotImplementedError
def create_future(self):
raise NotImplementedError
# Method scheduling a coroutine object: create a task.
def create_task(self, coro):