The Python 3.7.2 documentation on the asyncio eventloop says in the documentation of the call_later function:
The optional positional args will be passed to the callback when it is called. If you want the callback to be called with keyword arguments use functools.partial().
Is using functools.partial considered superior to using lambda for this case?