コード例 #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:])