(self, pattern)
| 12 | # Actively searches and prevents a pattern from being returned |
| 13 | class IterSearch: |
| 14 | def __init__(self, pattern): |
| 15 | self.pattern = list(pattern) |
| 16 | self.buffer = [] |
| 17 | |
| 18 | def __call__(self, char): |
| 19 | self.buffer += [char] |
nothing calls this directly
no outgoing calls
no test coverage detected