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, r.david.murray
Date 2013-11-14.13:09:53
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1384434593.81.0.562932190296.issue19575@psf.upfronthosting.co.za>
In-reply-to
Content
Another script, another test case.

Four different tasks are run:

subprocess_redirfile: Popen(stdout=file)
subprocess_devnull: Popen(stdout=DEVNULL)
subprocess_noredirect: Popen()
nosubprocess: No Popen() call

Judging from the output it looks as if it is the redirection that triggers this behavior.

Here's the output from my Win XP computer:

Platform: Windows-XP-5.1.2600-SP3

task_type                 #threads   result    
subprocess_redirfile      2          4 errors  
subprocess_redirfile      1          OK        
subprocess_devnull        2          5 errors  
subprocess_devnull        1          OK        
subprocess_noredirect     2          OK        
subprocess_noredirect     1          OK        
nosubprocess              2          OK        
nosubprocess              1          OK
History
Date User Action Args
2013-11-14 13:09:53Bernt.Røskar.Brennasetrecipients: + Bernt.Røskar.Brenna, r.david.murray
2013-11-14 13:09:53Bernt.Røskar.Brennasetmessageid: <1384434593.81.0.562932190296.issue19575@psf.upfronthosting.co.za>
2013-11-14 13:09:53Bernt.Røskar.Brennalinkissue19575 messages
2013-11-14 13:09:53Bernt.Røskar.Brennacreate