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 njs
Recipients asvetlov, giampaolo.rodola, njs, yselivanov
Date 2018-01-29.04:06:16
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1517198776.9.0.467229070634.issue32703@psf.upfronthosting.co.za>
In-reply-to
Content
Example (minimal version of https://github.com/python-trio/trio/issues/425):

-----

async def open_file():
    pass

async def main():
    async with open_file():  # Should be 'async with await open_file()'
        pass

coro = main()
coro.send(None)

-----

Here we accidentally left out an 'await' on the call to 'open_file', so the 'async with' tries to look up 'CoroutineType.__aexit__', which obviously doesn't exist, and the program crashes with an AttributeError("__aexit__"). Yet weirdly, this doesn't trigger a warning about 'open_file' being unawaited. It should!

Yury's theory: maybe BEFORE_ASYNC_WITH's error-handling path is forgetting to DECREF the object.
History
Date User Action Args
2018-01-29 04:06:17njssetrecipients: + njs, giampaolo.rodola, asvetlov, yselivanov
2018-01-29 04:06:16njssetmessageid: <1517198776.9.0.467229070634.issue32703@psf.upfronthosting.co.za>
2018-01-29 04:06:16njslinkissue32703 messages
2018-01-29 04:06:16njscreate