码迷,mamicode.com
首页 > 编程语言 > 详细

HTMLTestRunner修改成Python3版本

时间:2016-08-01 17:40:36      阅读:158      评论:0      收藏: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:

第766行,将uo = o.decode(‘latin-1‘)修改成uo = e

第775行,将ue = e.decode(‘latin-1‘)修改成ue = e

第631行,将print >> sys.stderr, ‘\nTime Elapsed: %s‘ % (self.stopTime-self.startTime)修改成print(sys.stderr, ‘\nTime Elapsed: %s‘ % (self.stopTime-self.startTime))

HTMLTestRunner修改成Python3版本

标签:

原文地址:http://www.cnblogs.com/wensiyang0916/p/5726415.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!