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 nickhendo
Recipients Alexander.Pyhalov, josh.r, movement, nickhendo, pitrou, vstinner
Date 2019-09-09.03:20:52
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1567999252.43.0.647582191193.issue37790@roundup.psfhosted.org>
In-reply-to
Content
We have recently bumped into a similar problem. Using FreeBSD, subprocess calls were taking more than 10 times the usual time to execute after migrating to python3.6. After some digging, the default for 'close_fds' was changed to 'True'. On linux, this actually made things faster, but for unix, much slower. Passing 'close_fds=False' solved this for us.
History
Date User Action Args
2019-09-09 03:20:52nickhendosetrecipients: + nickhendo, pitrou, vstinner, movement, Alexander.Pyhalov, josh.r
2019-09-09 03:20:52nickhendosetmessageid: <1567999252.43.0.647582191193.issue37790@roundup.psfhosted.org>
2019-09-09 03:20:52nickhendolinkissue37790 messages
2019-09-09 03:20:52nickhendocreate