示例#1
0
 def addLine(self, line):
     self.line = line
     self.lastIndex = 0
     #if protocol has been executed BUT crashee before create something
     #line=None (ROB)
     if line is not None:
         parseHyperText(line, self.matchHyperText)
         Text.addLine(self, line[self.lastIndex:])
示例#2
0
文件: text.py 项目: totalcos/scipion
 def addLine(self, line):
     self.line = line
     self.lastIndex = 0
     #if protocol has been executed BUT crashee before create something
     #line=None (ROB)
     if line is not None:
         parseHyperText(line, self.matchHyperText)
         Text.addLine(self, line[self.lastIndex:])
示例#3
0
文件: text.py 项目: liz18/scipion
 def addLine(self, line):
     self.line = line
     self.lastIndex = 0
     if line is not None:
         parseHyperText(line, self.matchHyperText)
         Text.addLine(self, line[self.lastIndex:])
示例#4
0
文件: text.py 项目: josegutab/scipion
 def addLine(self, line):
     self.line = line
     self.lastIndex = 0
     parseHyperText(line, self.matchHyperText)
     Text.addLine(self, line[self.lastIndex:])