Maintains support for < 3.4.4
@ -29,7 +29,7 @@ import asyncio
try:
create_task = asyncio.ensure_future
except AttributeError:
create_task = asyncio.async
create_task = getattr(asyncio, 'async')
run_coroutine_threadsafe = asyncio.run_coroutine_threadsafe