From bd8d1a19dd04062e1eb4ec916230ceaf0ccf36e3 Mon Sep 17 00:00:00 2001 From: Thomas Grainger Date: Mon, 9 Aug 2021 22:34:04 +0100 Subject: [PATCH] Removed old note about wrap_async_context_manager using multiple tasks (#337) --- docs/threads.rst | 3 --- 1 file changed, 3 deletions(-) diff --git a/docs/threads.rst b/docs/threads.rst index dc6ba542..88defe07 100644 --- a/docs/threads.rst +++ b/docs/threads.rst @@ -177,6 +177,3 @@ managers as a synchronous one:: .. note:: You cannot use wrapped async context managers in synchronous callbacks inside the event loop thread. - -.. note:: The ``__aenter__()`` and ``__aexit__()`` methods will be called from different - tasks so a task group as the async context manager will not work here.