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
网友评论