Hi Friends, Is there any way we can redirect graphical output to some file What i require is to run a test for my function but it involves dialog boxes but a test shld be run without user intervention :(
import sys import dialog import wx app = wx.PySimpleApp() sys.stdout = open('c:\\abc.txt','w') dialog.ConfirmMessageBox('hello','abdul',wx.OK) sys.stdout=sys.__stdout__ I was trying to use the above code but noticed it was tough to redirect to a file Please help :) Thanks in advance
-- http://mail.python.org/mailman/listinfo/python-list