(self, preamble)
| 158 | ) |
| 159 | |
| 160 | def _check_preamble(self, preamble): |
| 161 | match = self._preamble_pattern.match(preamble) |
| 162 | if not match: |
| 163 | return False |
| 164 | stage = match.group('stage') |
| 165 | return self._check_stage(stage) |
| 166 | |
| 167 | _content_pattern = re.compile( |
| 168 | r"""^(?P<name>.+?) = (?P<value>.+)$""" |
nothing calls this directly
no test coverage detected