From 13ae93e899197a5948b874f2e2fb05e3ddac0c69 Mon Sep 17 00:00:00 2001 From: Thomas Grainger Date: Wed, 2 Sep 2026 17:39:23 +0100 Subject: [PATCH] remove incorrect async from yield from --- peps/pep-0828.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/peps/pep-0828.rst b/peps/pep-0828.rst index 1b707923110..25e97601c61 100644 --- a/peps/pep-0828.rst +++ b/peps/pep-0828.rst @@ -357,7 +357,7 @@ to :meth:`~generator.close`. It's trivial for anyone who needs to delegate to a subgenerator to write the wrapper class to upgrade a synchronous :class:`~collections.abc.Iterable` or :class:`~collections.abc.Generator` to an -async one before calling ``async yield from``. +async one before calling ``yield from``. .. code-block:: python