We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
These things are in the MicroPython implementation of asyncio but not in CPython asyncio:
asyncio
core.py:
SingletonGenerator
_SingletonGenerator
sleep_ms()
_sleep_ms
IOQueue
Loop
_Loop
event.py:
ThreadSafeFlag
funcs.py:
wait_for_ms()
stream.py:
Stream
StreamReader
StreamWriter
_Stream
stream_awrite
Stream.aclose
Stream.awrite
Stream.awritestr
uasyncio
task.py:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
These things are in the MicroPython implementation of
asyncio
but not in CPythonasyncio
:core.py:
SingletonGenerator
: maybe rename to_SingletonGenerator
sleep_ms()
:omit, rename to_sleep_ms
or move.IOQueue
Loop
->_Loop
event.py:
ThreadSafeFlag
funcs.py:
wait_for_ms()
stream.py:
Stream
: serves forStreamReader
andStreamWriter
, maybe_Stream
stream_awrite
,Stream.aclose
(?),Stream.awrite
,Stream.awritestr
: legacyuasyncio
task.py:
The text was updated successfully, but these errors were encountered: