Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/unittest/
Dcase.py1309 def assertNotRegex(self, text, unexpected_regex, msg=None): argument
1311 if isinstance(unexpected_regex, (str, bytes)):
1312 unexpected_regex = re.compile(unexpected_regex)
1313 match = unexpected_regex.search(text)
1317 unexpected_regex.pattern,