Lines Matching defs:Match
88 match Match a regular expression pattern to the beginning of a string.
89 fullmatch Match a regular expression pattern to all of a string.
95 finditer Return an iterator yielding a Match object for each match.
133 "error", "Pattern", "Match", "A", "I", "L", "M", "S", "X", "U",
165 a Match object, or None if no match was found."""
170 a Match object, or None if no match was found."""
175 a Match object, or None if no match was found."""
183 a callable, it's passed the Match object and must return
194 If it is a callable, it's passed the Match object and must
220 string. For each match, the iterator returns a Match object.
264 Match = type(_compiler.compile('', 0).match(''))
311 # internal: Match.expand implementation hook