(pattern, string, flags=0, **options)
| 41 | |
| 42 | |
| 43 | def findall(pattern, string, flags=0, **options): |
| 44 | return RegexObject(pattern, flags=flags, **options).findall(string) |
| 45 | |
| 46 | |
| 47 | def finditer(pattern, string, flags=0, **options): |
nothing calls this directly
no test coverage detected