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 chris.jerdonek
Recipients Dima.Tisnek, chris.jerdonek, emilyemorehouse, yselivanov
Date 2017-06-27.11:27:00
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1498562820.08.0.443636183284.issue30773@psf.upfronthosting.co.za>
In-reply-to
Content
Note that the example can be further simplified by replacing user() with:

    async def send_hello(g):
        print("sending: hello")
        await g.asend("hello")

Then the output is:

sending: hello
received hello
sending: hello
sending: hello
received None
received None
History
Date User Action Args
2017-06-27 11:27:00chris.jerdoneksetrecipients: + chris.jerdonek, Dima.Tisnek, yselivanov, emilyemorehouse
2017-06-27 11:27:00chris.jerdoneksetmessageid: <1498562820.08.0.443636183284.issue30773@psf.upfronthosting.co.za>
2017-06-27 11:27:00chris.jerdoneklinkissue30773 messages
2017-06-27 11:27:00chris.jerdonekcreate