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 thehesiod
Recipients gvanrossum, thehesiod, vstinner, yselivanov
Date 2015-11-11.17:30:15
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1447263015.93.0.232616636818.issue25593@psf.upfronthosting.co.za>
In-reply-to
Content
clarification, adding the fut.done() check, or monkey patching:
orig_sock_connect_cb = asyncio.selector_events.BaseSelectorEventLoop._sock_connect_cb
def _sock_connect_cb(self, fut, sock, address):
    if fut.done(): return
    return orig_sock_connect_cb(self, fut, sock, address)
History
Date User Action Args
2015-11-11 17:30:15thehesiodsetrecipients: + thehesiod, gvanrossum, vstinner, yselivanov
2015-11-11 17:30:15thehesiodsetmessageid: <1447263015.93.0.232616636818.issue25593@psf.upfronthosting.co.za>
2015-11-11 17:30:15thehesiodlinkissue25593 messages
2015-11-11 17:30:15thehesiodcreate