Return an iterator over all non-overlapping matches in the string. For each match, the iterator returns a Match object. Empty matches are included in the result.
(pattern, string, flags=0)
| 280 | return _compile(pattern, flags).findall(string) |
| 281 | |
| 282 | def finditer(pattern, string, flags=0): |
| 283 | """Return an iterator over all non-overlapping matches in the |
| 284 | string. For each match, the iterator returns a Match object. |
| 285 | |
| 286 | Empty matches are included in the result.""" |
| 287 | return _compile(pattern, flags).finditer(string) |
| 288 | |
| 289 | def compile(pattern, flags=0): |
| 290 | "Compile a regular expression pattern, returning a Pattern object." |
nothing calls this directly
no test coverage detected
searching dependent graphs…