How does one enable output of python "print" statements on STDOUT placed in "Ice.py" for diagnostic purposes?
Thanks.
"sys.stdout = sys.__stdout__" does not work.
"print >> sys.__stdout__" does not work either.
"print >> sys.__stderr__" does not work either. ([ python-Bugs-1096310 ] sys.__stdout__ doco isn't discouraging enough)

Reply With Quote