(pattern, string, flags=0, **options)
| 33 | |
| 34 | |
| 35 | def is_match(pattern, string, flags=0, **options): |
| 36 | return RegexObject(pattern, flags=flags, **options).is_match(string) |
| 37 | |
| 38 | |
| 39 | def match(pattern, string, flags=0, **options): |
nothing calls this directly
no test coverage detected