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 ggenellina, pmezard, pythonmeister
Date 2007-11-08.16:38:45
SpamBayes Score 0.2668708
Marked as misclassified No
Message-id <1194539926.59.0.153105211326.issue1366@psf.upfronthosting.co.za>
In-reply-to
Content
the popen call does not redirect stderr.
If you do something like 2>null (windows) or 2>/dev/null (*nix) it will
_never_ get printed.
If you want to have stderr & stdout getting in via popen and thus stdout,
under *nix and windows you would do that:

command 2>&1

It is not popen to blame.
See this for reference:
http://netbsd.gw.com/cgi-bin/man-cgi?popen++NetBSD-current
History
Date User Action Args
2007-11-08 16:38:46pythonmeistersetspambayes_score: 0.266871 -> 0.2668708
recipients: + pythonmeister, ggenellina, pmezard
2007-11-08 16:38:46pythonmeistersetspambayes_score: 0.266871 -> 0.266871
messageid: <1194539926.59.0.153105211326.issue1366@psf.upfronthosting.co.za>
2007-11-08 16:38:46pythonmeisterlinkissue1366 messages
2007-11-08 16:38:45pythonmeistercreate