Hi, > Unfortunately, the problem with asyncio is, that it is in the stdlib > and you cannot just start renaming stuff, or only with long deprecation > periods.
I just checked: asyncio is still on a provisional status. So one may still change things. One should use the provisional status to make asyncio shiny. As to loop members vs. module functions: I think all loop members susceptible to be used in a task should have a module function counterpart, to be consistent. That does not apply to run_forever and friends as they are not called inside a task. Greetings Martin
