|
Gaudi Framework, version v21r8 |
| Home | Generated: 17 Mar 2010 |


Public Member Functions | |
| def | __init__ |
| def | __processLine__ |
Public Attributes | |
| start | |
| end | |
Private Attributes | |
| _skipping | |
Definition at line 372 of file GaudiTest.py.
| def GaudiTest::BlockSkipper::__init__ | ( | self, | ||
| start, | ||||
| end | ||||
| ) |
Definition at line 373 of file GaudiTest.py.
00373 : 00374 self.start = start 00375 self.end = end 00376 self._skipping = False 00377 def __processLine__(self, line):
| def GaudiTest::BlockSkipper::__processLine__ | ( | self, | ||
| line | ||||
| ) |
Reimplemented from GaudiTest::FilePreprocessor.
Definition at line 378 of file GaudiTest.py.
00378 : 00379 if self.start in line: 00380 self._skipping = True 00381 return None 00382 elif self.end in line: 00383 self._skipping = False 00384 elif self._skipping: 00385 return None 00386 return line 00387 class RegexpReplacer(FilePreprocessor):
Definition at line 374 of file GaudiTest.py.
Definition at line 375 of file GaudiTest.py.
GaudiTest::BlockSkipper::_skipping [private] |
Definition at line 376 of file GaudiTest.py.