This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Elaphurus
Recipients Elaphurus, docs@python
Date 2020-08-24.12:33:44
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1598272424.26.0.934323513188.issue41624@roundup.psfhosted.org>
In-reply-to
Content
The documentation [1] for Coroutine in typing library writes:

class typing.Coroutine(Awaitable[V_co], Generic[T_co T_contra, V_co])

which should be:

class typing.Coroutine(Awaitable[V_co], Generic[T_co, T_contra, V_co])

a comma is missed between the first type variable T_co and the second one T_contr.

[1] https://docs.python.org/3/library/typing.html#typing.Generic
History
Date User Action Args
2020-08-24 12:33:44Elaphurussetrecipients: + Elaphurus, docs@python
2020-08-24 12:33:44Elaphurussetmessageid: <1598272424.26.0.934323513188.issue41624@roundup.psfhosted.org>
2020-08-24 12:33:44Elaphuruslinkissue41624 messages
2020-08-24 12:33:44Elaphuruscreate