Try using the following at the begining of your Python program:

import sys

sys.stdout = open("out.txt","w")
sys.stderr = open("err.txt","w")


Then whatever would normally go to stdout or stderr goes to text files
instead.  You will see everything that happened.
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to