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-13.22:25:51
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1384381552.21.0.569273069396.issue19575@psf.upfronthosting.co.za>
In-reply-to
Content
Here's an improved repro script.

I believe it demonstrates that it is the combination of subprocess.Popen and threading that causes the problem.

Here's the output from my Windows XP VM:

***

c:\...> c:\Python33\python.exe repro_improved.py
Windows-XP-5.1.2600-SP3
Concurrency: 2
Task kind: subprocess_redirfile
3 errors of 10

Concurrency: 1
Task kind: subprocess_redirfile
0 errors of 10

Concurrency: 2
Task kind: subprocess_devnull
5 errors of 10

Concurrency: 1
Task kind: subprocess_devnull
0 errors of 10

Concurrency: 2
Task kind: nosubprocess
0 errors of 10

Concurrency: 1
Task kind: nosubprocess
0 errors of 10

***

Note that:
- even when subprocess redirects to DEVNULL there are errors
- when no subprocess.Popen is executed, no errors occur (the file is created as normal, but is not used by subprocess.Popen)
History
Date User Action Args
2013-11-13 22:25:52Bernt.Røskar.Brennasetrecipients: + Bernt.Røskar.Brenna, r.david.murray
2013-11-13 22:25:52Bernt.Røskar.Brennasetmessageid: <1384381552.21.0.569273069396.issue19575@psf.upfronthosting.co.za>
2013-11-13 22:25:52Bernt.Røskar.Brennalinkissue19575 messages
2013-11-13 22:25:51Bernt.Røskar.Brennacreate