[issue28793] Copy-paste error in collections.abc docs for AsyncGenerator

2016-11-25 Thread Berker Peksag
Berker Peksag added the comment: Thanks! -- assignee: -> docs@python components: +Documentation nosy: +berker.peksag, docs@python resolution: -> fixed stage: -> resolved status: open -> closed type: -> behavior ___ Python tracker

[issue28793] Copy-paste error in collections.abc docs for AsyncGenerator

2016-11-25 Thread Roundup Robot
Roundup Robot added the comment: New changeset 078c037b1571 by Berker Peksag in branch '3.6': Issue #28793: Fix c/p error in AsyncGenerator documentation https://hg.python.org/cpython/rev/078c037b1571 New changeset 0bf7c2d99bf1 by Berker Peksag in branch 'default': Issue #28793: Merge from 3.6 h

[issue28793] Copy-paste error in collections.abc docs for AsyncGenerator

2016-11-24 Thread Julien Palard
Julien Palard added the comment: Proposed a simple patch. Error was introduced by "Issue #28720: Add collections.abc.AsyncGenerator.", git commit c75c1f44, hg changeset 105163. I reread it and did not find other occurrences of the error. -- keywords: +patch nosy: +mdk Added file: http

[issue28793] Copy-paste error in collections.abc docs for AsyncGenerator

2016-11-24 Thread Nathaniel Smith
New submission from Nathaniel Smith: There's a small copy-paste error in the docs for collections.abc.AsyncGenerator -- it's called collections.abc.Generator: "class collections.abc.Generator ABC for asynchronous generator classes that implement the protocol defined in PEP 525 and PEP 492