Searched refs:unexpected_regex (Results 1 – 1 of 1) sorted by relevance
1309 def assertNotRegex(self, text, unexpected_regex, msg=None): argument1311 if isinstance(unexpected_regex, (str, bytes)):1312 unexpected_regex = re.compile(unexpected_regex)1313 match = unexpected_regex.search(text)1317 unexpected_regex.pattern,