Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/unittest/
Dcase.py998 def assertNotRegexpMatches(self, text, unexpected_regexp, msg=None): argument
1000 if isinstance(unexpected_regexp, basestring):
1001 unexpected_regexp = re.compile(unexpected_regexp)
1002 match = unexpected_regexp.search(text)
1007 unexpected_regexp.pattern,