(self, *args, **kwargs)
| 44 | return self.compiled.finditer(*args, **kwargs) |
| 45 | |
| 46 | def search(self, *args, **kwargs) -> Match[str] | None: |
| 47 | return self.compiled.search(*args, **kwargs) |
| 48 | |
| 49 | def match(self, *args, **kwargs) -> Match[str] | None: |
| 50 | return self.compiled.match(*args, **kwargs) |
no outgoing calls