class MergedStreamReadWriter(StreamReaderWriter):
def __init__(self,*instreams):
self._streams=instreams
def write(self, data):
for stream in self._streams:
stream.write(data)
console_output=sys.stdout
log_file=codecs.open('statusaa.txt','w',encoding='utf-8')
sys.stdout=util.MergedStreamReadWriter(console_output,log_file)
这样改写print的输出向之后,我的pycharm不能调试了。。
以后不能调试的话有可能是这个问题