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 pythonmeister
Recipients pythonmeister
Date 2007-10-15.13:12:55
SpamBayes Score 0.12954041
Marked as misclassified No
Message-id <1192453976.49.0.177979344354.issue1279@psf.upfronthosting.co.za>
In-reply-to
Content
When doing such
os.system("a command wich writes a outfile")
f = open("the file the command before wrote")

the file is empty.

If I do this:

os.popen("a command wich writes a outfile")
f = open("the file the command before wrote")

everything is fine
History
Date User Action Args
2007-10-15 13:12:56pythonmeistersetspambayes_score: 0.12954 -> 0.12954041
recipients: + pythonmeister
2007-10-15 13:12:56pythonmeistersetspambayes_score: 0.12954 -> 0.12954
messageid: <1192453976.49.0.177979344354.issue1279@psf.upfronthosting.co.za>
2007-10-15 13:12:56pythonmeisterlinkissue1279 messages
2007-10-15 13:12:55pythonmeistercreate