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 Bernt.Røskar.Brenna
Recipients Bernt.Røskar.Brenna, astrand, gps, neologix, r.david.murray, sbt, tim.golden
Date 2013-11-14.21:23:01
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1384464181.24.0.578110215396.issue19575@psf.upfronthosting.co.za>
In-reply-to
Content
@neologix: But how do you explain this:

subprocess_devnull        2          9 errors
subprocess_devnull        1          OK

subprocess_devnull creates a file, then starts a subprocess (that redirects to DEVNULL, does not use the file), then tries to remove the directory containing the file. When running in parallel, it fails.

subprocess_noredirect     2          OK
subprocess_noredirect     1          OK

subprocess_noredirect creates a file, then starts a subprocess (that does not use the file), then tries to remove the directory containing the file. When running in parallel, it does not fail.
History
Date User Action Args
2013-11-14 21:23:01Bernt.Røskar.Brennasetrecipients: + Bernt.Røskar.Brenna, astrand, gps, tim.golden, r.david.murray, neologix, sbt
2013-11-14 21:23:01Bernt.Røskar.Brennasetmessageid: <1384464181.24.0.578110215396.issue19575@psf.upfronthosting.co.za>
2013-11-14 21:23:01Bernt.Røskar.Brennalinkissue19575 messages
2013-11-14 21:23:01Bernt.Røskar.Brennacreate