I'm executing an external command from Jython 2.1 by calling os.system(). This works, but I can't get to any error messages the external program is writing.
Jython 2.1 is too old to use subprocess and os.popen does not seem to exist in Jython 2.1.
How can I capture stderr and stdout of my external program inside my Jython script?