Searched refs:unexpected_regex (Results 1 – 1 of 1) sorted by relevance
1324 def assertNotRegex(self, text, unexpected_regex, msg=None): argument1326 if isinstance(unexpected_regex, (str, bytes)):1327 unexpected_regex = re.compile(unexpected_regex)1328 match = unexpected_regex.search(text)1332 unexpected_regex.pattern,