Home | History | Annotate | Download | only in checkout

Lines Matching full:match

55         match = re.match(self.date_line_regexp, self._contents, re.MULTILINE)
56 if not match:
60 self._author_name = match.group("name") if match else None
61 self._author_email = match.group("email") if match else None
63 match = re.search("^\s+Reviewed by (?P<reviewer>.*?)[\.,]?\s*$", self._contents, re.MULTILINE) # Discard everything after the first period
64 self._reviewer_text = match.group("reviewer") if match else None
112 if not date_line_regexp.match(first_line):
118 if date_line_regexp.match(line) or rolled_over_regexp.match(line):