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 martin.panter
Recipients krsna, martin.panter
Date 2020-04-16.10:13:40
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1587032020.19.0.854740932248.issue40299@roundup.psfhosted.org>
In-reply-to
Content
The file descriptor created by "os.dup" is not inherited by child processes by default since Python 3.4.
https://docs.python.org/3/library/os.html#os.dup

Does it work if you use "os.set_inheritable" or "os.dup2" (which apparently sets it inhertiable by default)?
History
Date User Action Args
2020-04-16 10:13:40martin.pantersetrecipients: + martin.panter, krsna
2020-04-16 10:13:40martin.pantersetmessageid: <1587032020.19.0.854740932248.issue40299@roundup.psfhosted.org>
2020-04-16 10:13:40martin.panterlinkissue40299 messages
2020-04-16 10:13:40martin.pantercreate