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 yonas
Recipients amaury.forgeotdarc, yonas
Date 2009-05-27.20:52:46
SpamBayes Score 3.6876552e-06
Marked as misclassified No
Message-id <1243457568.09.0.992903909872.issue6122@psf.upfronthosting.co.za>
In-reply-to
Content
Here's another test, taken from the docs:

http://docs.python.org/library/subprocess.html#subprocess-replacements:

This is slightly better than Popen because the program executes and
shows output, but worse than os.system(), because it still shows the error:

--------------------------
try:
            retcode = call("echo" + " \"hello world\"", shell=True)
            if retcode < 0:
                print >>sys.stderr, "Child was terminated by signal",
-retcode
                print >>sys.stderr, "Child was terminated by signal",
-retcode
            else:
                print >>sys.stderr, "Child returned", retcode
        except OSError, e:
            print >>sys.stderr, "Execution failed:", e


-----------------
hello world
Execution failed: [Errno 10] No child processes
History
Date User Action Args
2009-05-27 20:52:48yonassetrecipients: + yonas, amaury.forgeotdarc
2009-05-27 20:52:48yonassetmessageid: <1243457568.09.0.992903909872.issue6122@psf.upfronthosting.co.za>
2009-05-27 20:52:46yonaslinkissue6122 messages
2009-05-27 20:52:46yonascreate