aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien George <damien@micropython.org>2024-05-15 14:13:30 +1000
committerDamien George <damien@micropython.org>2024-05-15 14:13:30 +1000
commitabd1f28bc20a220658cfec8f03169edfd0097421 (patch)
tree9ae76ef52b9450f5c891c3e4f82f47d50816bce9
parente816b49c44f70ec2ca28cb5a2caefc7446a6c8e5 (diff)
docs/library/asyncio: Document that ThreadSafeFlag now works on unix.
ThreadSafeFlag works on the unix port since commit df08c38c286561c08d5ac354428074817eb0c163. Signed-off-by: Damien George <damien@micropython.org>
-rw-r--r--docs/library/asyncio.rst3
1 files changed, 1 insertions, 2 deletions
diff --git a/docs/library/asyncio.rst b/docs/library/asyncio.rst
index b57f1ee04..51ad8a287 100644
--- a/docs/library/asyncio.rst
+++ b/docs/library/asyncio.rst
@@ -149,8 +149,7 @@ class ThreadSafeFlag
Create a new flag which can be used to synchronise a task with code running
outside the asyncio loop, such as other threads, IRQs, or scheduler
- callbacks. Flags start in the cleared state. The class does not currently
- work under the Unix build of MicroPython.
+ callbacks. Flags start in the cleared state.
.. method:: ThreadSafeFlag.set()