Compile a regular expression pattern, returning a Pattern object.
(pattern, flags=0)
| 287 | return _compile(pattern, flags).finditer(string) |
| 288 | |
| 289 | def compile(pattern, flags=0): |
| 290 | "Compile a regular expression pattern, returning a Pattern object." |
| 291 | return _compile(pattern, flags) |
| 292 | |
| 293 | def purge(): |
| 294 | "Clear the regular expression caches" |
searching dependent graphs…