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 dan.oreilly
Recipients dan.oreilly, gvanrossum, vstinner, yselivanov
Date 2014-07-27.16:51:39
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1406479900.0.0.646088929024.issue22087@psf.upfronthosting.co.za>
In-reply-to
Content
Hmm, I'm not sure what you mean. What check in the policy would prevent this issue you described in #21998?:

import asyncio, os
loop = asyncio.get_event_loop()
pid = os.fork()
if pid:
    print("parent", loop._csock.fileno(), loop._ssock.fileno())
else:
    print("child", loop._csock.fileno(), loop._ssock.fileno())

Output:
---
parent 6 5
child 6 5
History
Date User Action Args
2014-07-27 16:51:40dan.oreillysetrecipients: + dan.oreilly, gvanrossum, vstinner, yselivanov
2014-07-27 16:51:40dan.oreillysetmessageid: <1406479900.0.0.646088929024.issue22087@psf.upfronthosting.co.za>
2014-07-27 16:51:39dan.oreillylinkissue22087 messages
2014-07-27 16:51:39dan.oreillycreate