import asyncio import functools async def func(x): return x*2 partial_async_func = asyncio.coroutine(functools.partial(func, x=1))