[issue41624] typing.Coroutine documentation

2020-08-28 Thread Guido van Rossum
Change by Guido van Rossum : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue41624] typing.Coroutine documentation

2020-08-28 Thread Guido van Rossum
Guido van Rossum added the comment: New changeset c01a7edc67e2c2e13a6d9513f111f27761786e27 by Karthikeyan Singaravelan in branch '3.9': [3.9] bpo-41624: fix documentation of typing.Coroutine (GH-21952) (#21982) https://github.com/python/cpython/commit/c01a7edc67e2c2e13a6d9513f111f27761786e27

[issue41624] typing.Coroutine documentation

2020-08-28 Thread Guido van Rossum
Guido van Rossum added the comment: New changeset 838316db08a8e3174e4cf8db233ff69d388b3f5c by Karthikeyan Singaravelan in branch '3.8': [3.8] bpo-41624: fix documentation of typing.Coroutine (GH-21952). (#21983) https://github.com/python/cpython/commit/838316db08a8e3174e4cf8db233ff69d388b3f5c

[issue41624] typing.Coroutine documentation

2020-08-27 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- pull_requests: +21092 pull_request: https://github.com/python/cpython/pull/21983 ___ Python tracker ___

[issue41624] typing.Coroutine documentation

2020-08-27 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- pull_requests: +21091 pull_request: https://github.com/python/cpython/pull/21982 ___ Python tracker ___

[issue41624] typing.Coroutine documentation

2020-08-26 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 8c58d2a216ca2b5965361df9b8d8944bc7d4854d by MingZhe Hu in branch 'master': bpo-41624: fix documentation of typing.Coroutine (GH-21952) https://github.com/python/cpython/commit/8c58d2a216ca2b5965361df9b8d8944bc7d4854d -- nosy: +lukasz.lang

[issue41624] typing.Coroutine documentation

2020-08-24 Thread MingZhe Hu
Change by MingZhe Hu : -- keywords: +patch pull_requests: +21061 stage: -> patch review pull_request: https://github.com/python/cpython/pull/21952 ___ Python tracker ___ _

[issue41624] typing.Coroutine documentation

2020-08-24 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Thanks for the report. This seems to be a reasonable suggestion. Would you like to open a PR for this? -- keywords: +easy, newcomer friendly nosy: +xtreak ___ Python tracker

[issue41624] typing.Coroutine documentation

2020-08-24 Thread MingZhe Hu
New submission from MingZhe Hu : 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 typ