修改HTMLTestRunner.py适用于Python3

2021-03-19  本文已影响0人  小游y

94行:import StringIO 修改为 import IO

539行:self.outputBuffer= StringIO.StringIO()  修改为 self.outputBuffer= io.StringIO()

642行:if not rmap.has_key(cls):  修改为  if not cls in rmap:9

631行:print>>sys.stderr, '\nTime Elapsed: %s' % (self.stopTime-self.startTime) 修改为print(sys.stderr, '\nTime Elapsed: %s' % (self.stopTime-self.startTime))

766行:uo = o.decode('latin-1') 修改为 uo = e

773行:ue = e.decode('latin-1') 修改为 uo=e

上一篇下一篇

猜你喜欢

热点阅读