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 Dima.Tisnek
Recipients Dima.Tisnek, asvetlov, yselivanov
Date 2019-06-10.09:57:54
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1560160674.49.0.767700756794.issue37172@roundup.psfhosted.org>
In-reply-to
Content
I think that if a Future is abused, the following two should return *same* error:

async def test():
    await asyncio.gather(reader(), writer())

-vs-

async def test():
    await asyncio.gather(reader(), reader(), writer())
History
Date User Action Args
2019-06-10 09:57:54Dima.Tisneksetrecipients: + Dima.Tisnek, asvetlov, yselivanov
2019-06-10 09:57:54Dima.Tisneksetmessageid: <1560160674.49.0.767700756794.issue37172@roundup.psfhosted.org>
2019-06-10 09:57:54Dima.Tisneklinkissue37172 messages
2019-06-10 09:57:54Dima.Tisnekcreate