From: MingZhe Hu Date: Thu, 27 Aug 2020 00:42:37 +0000 (+0800) Subject: bpo-41624: fix documentation of typing.Coroutine (GH-21952) X-Git-Tag: v3.10.0a1~222 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8c58d2a216ca2b5965361df9b8d8944bc7d4854d;p=thirdparty%2FPython%2Fcpython.git bpo-41624: fix documentation of typing.Coroutine (GH-21952) --- diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst index 8208680669de..9f98f8ce3f64 100644 --- a/Doc/library/typing.rst +++ b/Doc/library/typing.rst @@ -1365,7 +1365,7 @@ Corresponding to other types in :mod:`collections.abc` Asynchronous programming """""""""""""""""""""""" -.. class:: Coroutine(Awaitable[V_co], Generic[T_co T_contra, V_co]) +.. class:: Coroutine(Awaitable[V_co], Generic[T_co, T_contra, V_co]) A generic version of :class:`collections.abc.Coroutine`. The variance and order of type variables diff --git a/Misc/NEWS.d/next/Documentation/2020-08-25-15-11-23.bpo-41624.ddjJlN.rst b/Misc/NEWS.d/next/Documentation/2020-08-25-15-11-23.bpo-41624.ddjJlN.rst new file mode 100644 index 000000000000..bdbc5a445f33 --- /dev/null +++ b/Misc/NEWS.d/next/Documentation/2020-08-25-15-11-23.bpo-41624.ddjJlN.rst @@ -0,0 +1 @@ +Fix the signature of :class:`typing.Coroutine`.