Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/lldb/third_party/Python/module/unittest2/unittest2/
H A Dcase.py1097 def assertNotRegexpMatches(self, text, unexpected_regexp, msg=None): argument
1099 if isinstance(unexpected_regexp, str):
1100 unexpected_regexp = re.compile(unexpected_regexp)
1101 match = unexpected_regexp.search(text)
1106 unexpected_regexp.pattern,