From abd1f28bc20a220658cfec8f03169edfd0097421 Mon Sep 17 00:00:00 2001 From: Damien George Date: Wed, 15 May 2024 14:13:30 +1000 Subject: [PATCH] docs/library/asyncio: Document that ThreadSafeFlag now works on unix. ThreadSafeFlag works on the unix port since commit df08c38c286561c08d5ac354428074817eb0c163. Signed-off-by: Damien George --- docs/library/asyncio.rst | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/library/asyncio.rst b/docs/library/asyncio.rst index b57f1ee04e..51ad8a2876 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()