(self, s)
| 84 | pass |
| 85 | |
| 86 | def check(self, s): |
| 87 | match = self.line_pattern.match(s) |
| 88 | if not match: |
| 89 | return False |
| 90 | _, preamble, content = match.groups() |
| 91 | return (self._check_preamble(preamble) and |
| 92 | self._check_content(content)) |
| 93 | |
| 94 | |
| 95 | class ElapsedTimeEntry(_BaseEntry): |
nothing calls this directly
no test coverage detected