(pattern, string, flags=0, **options)
| 29 | |
| 30 | |
| 31 | def search(pattern, string, flags=0, **options): |
| 32 | return RegexObject(pattern, flags=flags, **options).search(string) |
| 33 | |
| 34 | |
| 35 | def is_match(pattern, string, flags=0, **options): |
nothing calls this directly
no test coverage detected