Open
Description
User Erlend in discord pointed out that CPython cautions that asyncio.create_task()
keeps only a weak reference to the created task. MicroPython/CircuitPython does not implement weak references, so we are safe from that. However, we should write our examples and library code to work on CPython as well.