Try to apply the pattern to all of the string, returning a Match object, or None if no match was found.
(pattern, string, flags=0)
| 169 | match = prefixmatch |
| 170 | |
| 171 | def fullmatch(pattern, string, flags=0): |
| 172 | """Try to apply the pattern to all of the string, returning |
| 173 | a Match object, or None if no match was found.""" |
| 174 | return _compile(pattern, flags).fullmatch(string) |
| 175 | |
| 176 | def search(pattern, string, flags=0): |
| 177 | """Scan through string looking for a match to the pattern, returning |
nothing calls this directly
no test coverage detected
searching dependent graphs…