(pattern, string, flags=0, **options)
| 37 | |
| 38 | |
| 39 | def match(pattern, string, flags=0, **options): |
| 40 | return RegexObject(pattern, flags=flags, **options).match(string) |
| 41 | |
| 42 | |
| 43 | def findall(pattern, string, flags=0, **options): |
nothing calls this directly
no test coverage detected