(self, *args, **kwargs)
| 41 | return re.compile(self.regex, self.flags) |
| 42 | |
| 43 | def finditer(self, *args, **kwargs) -> Iterator[Match[str]]: |
| 44 | return self.compiled.finditer(*args, **kwargs) |
| 45 | |
| 46 | def search(self, *args, **kwargs) -> Match[str] | None: |
| 47 | return self.compiled.search(*args, **kwargs) |
no outgoing calls