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 socketpair
Recipients asvetlov, gvanrossum, socketpair, yselivanov
Date 2018-01-11.08:52:28
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1515660748.46.0.467229070634.issue32528@psf.upfronthosting.co.za>
In-reply-to
Content
@gvanrossum

More real code:

async def xxxx():
    while True:
        try:
            result = await download()
            handle_result(result)
        except Exception as e:
            log.warning('Fail..%r', e)
        await asyncio.sleep()


Why sucha a code is fault ?
History
Date User Action Args
2018-01-11 08:52:28socketpairsetrecipients: + socketpair, gvanrossum, asvetlov, yselivanov
2018-01-11 08:52:28socketpairsetmessageid: <1515660748.46.0.467229070634.issue32528@psf.upfronthosting.co.za>
2018-01-11 08:52:28socketpairlinkissue32528 messages
2018-01-11 08:52:28socketpaircreate