(self, stream: str)
| 105 | return matches |
| 106 | |
| 107 | def submit(self, stream: str) -> Generator[str, None, None]: |
| 108 | # Iterate over findall() response in case >1 match occurred. |
| 109 | for _ in self.pattern_matches(stream, self.pattern, "index"): |
| 110 | yield self.response |
| 111 | |
| 112 | |
| 113 | class FailingResponder(Responder): |
no test coverage detected