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 Dormouse759, martin.panter, pmoravec, vstinner
Date 2018-09-06.04:33:01
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1536208382.08.0.56676864532.issue34566@psf.upfronthosting.co.za>
In-reply-to
Content
You probably only need to call "wait" once. That blocks the thread until it gets a result, so it is more CPU-efficient than calling "poll" in a busy loop.

Since you open a separate pipe for "stderr" in script.py, but don't do anything with it, there could be a deadlock with the child writing to the stderr pipe versus the parent reading from "stdout" or waiting for the exit status.

I guess your script is an approximation of the "sos" application. I don't have time to understand everything it is trying to do, but I added some comments at <https://github.com/sosreport/sos/commit/2fcf5f0#r30410300>.
History
Date User Action Args
2018-09-06 04:33:02martin.pantersetrecipients: + martin.panter, vstinner, Dormouse759, pmoravec
2018-09-06 04:33:02martin.pantersetmessageid: <1536208382.08.0.56676864532.issue34566@psf.upfronthosting.co.za>
2018-09-06 04:33:02martin.panterlinkissue34566 messages
2018-09-06 04:33:01martin.pantercreate