美文网首页
修改HTMLTestRunner.py适用于Python3

修改HTMLTestRunner.py适用于Python3

作者: 小游y | 来源:发表于2021-03-19 14:58 被阅读0次

    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

    相关文章

      网友评论

          本文标题:修改HTMLTestRunner.py适用于Python3

          本文链接:https://www.haomeiwen.com/subject/dtrxqltx.html