Lines Matching refs:re
34 import re
55 match = re.match(self.date_line_regexp, self._contents, re.MULTILINE)
63 match = re.search("^\s+Reviewed by (?P<reviewer>.*?)[\.,]?\s*$", self._contents, re.MULTILINE) # Discard everything after the first period
106 date_line_regexp = re.compile(ChangeLogEntry.date_line_regexp)
107 rolled_over_regexp = re.compile(ChangeLogEntry.rolled_over_regexp)
151 reviewed_by_regexp = re.compile(
154 # inplace=1 creates a backup file and re-directs stdout to the file
170 # inplace=1 creates a backup file and re-directs stdout to the file