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 vstinner
Recipients ryder.lewis, vstinner
Date 2014-06-30.23:34:59
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1404171299.93.0.773975111348.issue21886@psf.upfronthosting.co.za>
In-reply-to
Content
In https://codereview.appspot.com/69870048/ Guido proposed to test to replace:
   self._loop.call_soon(waiter.set_result, None)
with:
   if not waiter.cancelled():
      waiter.set_result(None)
History
Date User Action Args
2014-06-30 23:34:59vstinnersetrecipients: + vstinner, ryder.lewis
2014-06-30 23:34:59vstinnersetmessageid: <1404171299.93.0.773975111348.issue21886@psf.upfronthosting.co.za>
2014-06-30 23:34:59vstinnerlinkissue21886 messages
2014-06-30 23:34:59vstinnercreate