Home
last modified time | relevance | path

Searched refs:unexpected_regex (Results 1 – 1 of 1) sorted by relevance

/third_party/python/Lib/unittest/
Dcase.py1324 def assertNotRegex(self, text, unexpected_regex, msg=None): argument
1326 if isinstance(unexpected_regex, (str, bytes)):
1327 unexpected_regex = re.compile(unexpected_regex)
1328 match = unexpected_regex.search(text)
1332 unexpected_regex.pattern,