Definition at line 76 of file preprocessors.py.
◆ __init__()
GaudiTesting.preprocessors.BlockSkipper.__init__ |
( |
| self, |
|
|
| start, |
|
|
| end ) |
Definition at line 77 of file preprocessors.py.
77 def __init__(self, start, end):
78 self.start = start
79 self.end = end
80 self._skipping = False
81
◆ __processLine__()
GaudiTesting.preprocessors.BlockSkipper.__processLine__ |
( |
| self, |
|
|
| line ) |
Definition at line 82 of file preprocessors.py.
82 def __processLine__(self, line):
83 if self.start in line:
84 self._skipping = True
85 return None
86 elif self.end in line:
87 self._skipping = False
88 elif self._skipping:
89 return None
90 return line
91
92
◆ _skipping
bool GaudiTesting.preprocessors.BlockSkipper._skipping = False |
|
protected |
◆ end
GaudiTesting.preprocessors.BlockSkipper.end = end |
◆ start
GaudiTesting.preprocessors.BlockSkipper.start = start |
The documentation for this class was generated from the following file: