From: Berker Peksag Date: Fri, 25 Nov 2016 14:31:27 +0000 (+0300) Subject: Issue #28793: Fix c/p error in AsyncGenerator documentation X-Git-Tag: v3.6.0rc1~30 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=61d9c8639e429a14e11df0243c3664581983f24b;p=thirdparty%2FPython%2Fcpython.git Issue #28793: Fix c/p error in AsyncGenerator documentation Patch by Julien Palard. --- diff --git a/Doc/library/collections.abc.rst b/Doc/library/collections.abc.rst index 3ac49db78d7d..58b03b9bd768 100644 --- a/Doc/library/collections.abc.rst +++ b/Doc/library/collections.abc.rst @@ -223,7 +223,7 @@ ABC Inherits from Abstract Methods Mixin .. versionadded:: 3.5 -.. class:: Generator +.. class:: AsyncGenerator ABC for asynchronous generator classes that implement the protocol defined in :pep:`525` and :pep:`492`.