Home
last modified time | relevance | path

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

/external/python/cpython2/Lib/unittest/
Dcase.py1005 def assertNotRegexpMatches(self, text, unexpected_regexp, msg=None): argument
1007 if isinstance(unexpected_regexp, basestring):
1008 unexpected_regexp = re.compile(unexpected_regexp)
1009 match = unexpected_regexp.search(text)
1014 unexpected_regexp.pattern,