(self, content)
| 169 | ) |
| 170 | |
| 171 | def _check_content(self, content): |
| 172 | match = self._content_pattern.match(content) |
| 173 | if not match: |
| 174 | return False |
| 175 | name, value = match.groups() |
| 176 | return self._check_name(name) and self._check_value(value) |
| 177 | |
| 178 | def _check_name(self, name): |
| 179 | if self.name is not None: |
nothing calls this directly
no test coverage detected