|
Gaudi Framework, version v21r4 |
| Home | Generated: 7 Sep 2009 |


Definition at line 355 of file GaudiTest.py.
Public Member Functions | |
| def | __init__ |
| def | __processLine__ |
Public Attributes | |
| start | |
| end | |
Private Attributes | |
| _skipping | |
| def GaudiTest::BlockSkipper::__init__ | ( | self, | ||
| start, | ||||
| end | ||||
| ) |
Definition at line 356 of file GaudiTest.py.
00356 : 00357 self.start = start 00358 self.end = end 00359 self._skipping = False 00360 def __processLine__(self, line):
| def GaudiTest::BlockSkipper::__processLine__ | ( | self, | ||
| line | ||||
| ) |
Reimplemented from GaudiTest::FilePreprocessor.
Definition at line 361 of file GaudiTest.py.
00361 : 00362 if self.start in line: 00363 self._skipping = True 00364 return None 00365 elif self.end in line: 00366 self._skipping = False 00367 elif self._skipping: 00368 return None 00369 return line 00370 class RegexpReplacer(FilePreprocessor):
Definition at line 357 of file GaudiTest.py.
Definition at line 358 of file GaudiTest.py.
GaudiTest::BlockSkipper::_skipping [private] |
Definition at line 359 of file GaudiTest.py.