> I suspect you're using: > pipe = popen2.popen4(cmd) > instead of > pipe = popen2.Popen4(cmd) > Notice the use of the capital P. The first executes a function that > returns a tuple. The second creates a class instance.
Right again. Thanks. BTW. If I do end up os.kill()ing this process, do I have to close the input output pipes, or do they get closed automagically? Any other cleanup that is necessary? _______________________________________________ pygtk mailing list [EMAIL PROTECTED] http://www.daa.com.au/mailman/listinfo/pygtk Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/
