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)
| 216 | return _compile(pattern, flags).findall(string) |
| 217 | |
| 218 | def finditer(pattern, string, flags=0): |
| 219 | """Return an iterator over all non-overlapping matches in the |
| 220 | string. For each match, the iterator returns a Match object. |
| 221 | |
| 222 | Empty matches are included in the result.""" |
| 223 | return _compile(pattern, flags).finditer(string) |
| 224 | |
| 225 | def compile(pattern, flags=0): |
| 226 | "Compile a regular expression pattern, returning a Pattern object." |
nothing calls this directly
no test coverage detected