(self, *args, **kwargs)
| 47 | return self.compiled.search(*args, **kwargs) |
| 48 | |
| 49 | def match(self, *args, **kwargs) -> Match[str] | None: |
| 50 | return self.compiled.match(*args, **kwargs) |
| 51 | |
| 52 | def sub(self, *args, **kwargs) -> str: |
| 53 | return self.compiled.sub(*args, **kwargs) |
no outgoing calls
no test coverage detected