|
Gaudi Framework, version v21r7 |
| Home | Generated: 22 Jan 2010 |


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