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 ncoghlan
Recipients asvetlov, gvanrossum, ncoghlan, vstinner, yselivanov
Date 2015-05-21.08:55:37
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1432198537.58.0.746679638789.issue24180@psf.upfronthosting.co.za>
In-reply-to
Content
Patch looks worth merging to me. Some minor questions/quibbles:

Asynchronous iterator question: should the typical pattern for those be:

    def __aiter__(self):
        return self
    def __await__(self):
        return self

"Did we put the ABC's in the right place?" question: reviewing the draft docs meant I just noticed that collections.abc is quite an odd home for some of these. Probably not worth worrying about, given that AsyncIterator and AsyncIterable do belong, and the others are building blocks for those.

The What's New entry can be tweaked to replace "proposes" with "added".
History
Date User Action Args
2015-05-21 08:55:37ncoghlansetrecipients: + ncoghlan, gvanrossum, vstinner, asvetlov, yselivanov
2015-05-21 08:55:37ncoghlansetmessageid: <1432198537.58.0.746679638789.issue24180@psf.upfronthosting.co.za>
2015-05-21 08:55:37ncoghlanlinkissue24180 messages
2015-05-21 08:55:37ncoghlancreate