From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Thu, 15 Nov 2018 06:20:16 +0000 (-0800) Subject: Fix typo in asynchronous generator iterator documentation (GH-10542) X-Git-Tag: v3.7.2rc1~135 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b6b56b49e9d9b3e0e8b7bc24a6b1a55db6bc1da0;p=thirdparty%2FPython%2Fcpython.git Fix typo in asynchronous generator iterator documentation (GH-10542) Remove an unnecessary "that": ... will execute that the body ... -> ... will execute the body ... (cherry picked from commit 25221b328339fb1726b58742e91b6e49c178023a) Co-authored-by: Sebastián Ramírez --- diff --git a/Doc/glossary.rst b/Doc/glossary.rst index ace7e6405e02..b8d98dd34c13 100644 --- a/Doc/glossary.rst +++ b/Doc/glossary.rst @@ -108,8 +108,8 @@ Glossary This is an :term:`asynchronous iterator` which when called using the :meth:`__anext__` method returns an awaitable object which will execute - that the body of the asynchronous generator function until the - next :keyword:`yield` expression. + the body of the asynchronous generator function until the next + :keyword:`yield` expression. Each :keyword:`yield` temporarily suspends processing, remembering the location execution state (including local variables and pending