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 Jonas Obrist
Recipients Jonas Obrist, asvetlov, yselivanov
Date 2018-04-09.10:10:19
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1523268620.33.0.682650639539.issue33248@psf.upfronthosting.co.za>
In-reply-to
Content
The attached code runs fine on MacOS using 3.6.5 from homebrew. However on Windows (I tested on 3.6.4 with the 32bit installer from the website) and Linux (using the python:3.6.5 docker image) it errors with "TypeError: cannot 'yield from' a coroutine object in a non-coroutine generator".

On MacOS I tried both _UnixSelectorEventLoop with Kqueue and Select selectors, on Linux _UnixSelectorEventLoop with Epoll and Select.

Which behavior is the expected one?

As an aside, what I'm trying to achieve is to have an awaitable object that which if unawaited evaluates to False if used in if statements.
History
Date User Action Args
2018-04-09 10:10:20Jonas Obristsetrecipients: + Jonas Obrist, asvetlov, yselivanov
2018-04-09 10:10:20Jonas Obristsetmessageid: <1523268620.33.0.682650639539.issue33248@psf.upfronthosting.co.za>
2018-04-09 10:10:20Jonas Obristlinkissue33248 messages
2018-04-09 10:10:19Jonas Obristcreate