Hi!
1) Define your print function. Example:
def mprint(*par):
for i in par:
print i,
print2) in your code, replace all 'print' by 'mprint'3) when you want cancel the print, modify only the mprint function.
@-salutations --Michel Claveau
_______________________________________________ python-win32 mailing list [email protected] http://mail.python.org/mailman/listinfo/python-win32
