##// END OF EJS Templates
win32: assign winstdout to sys.__stdout__ as well (issue2888)...
Idan Kamara -
r14892:d2d59271 stable
parent child Browse files
Show More
@@ -62,7 +62,7 b' class winstdout(object):'
62 self.close()
62 self.close()
63 raise IOError(errno.EPIPE, 'Broken pipe')
63 raise IOError(errno.EPIPE, 'Broken pipe')
64
64
65 sys.stdout = winstdout(sys.stdout)
65 sys.__stdout__ = sys.stdout = winstdout(sys.stdout)
66
66
67 def _is_win_9x():
67 def _is_win_9x():
68 '''return true if run on windows 95, 98 or me.'''
68 '''return true if run on windows 95, 98 or me.'''
General Comments 0
You need to be logged in to leave comments. Login now