예제 #1
0
파일: text.py 프로젝트: azazellochg/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:])
예제 #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:])