Searched refs:unexpected_regexp (Results 1 – 1 of 1) sorted by relevance
998 def assertNotRegexpMatches(self, text, unexpected_regexp, msg=None): argument1000 if isinstance(unexpected_regexp, basestring):1001 unexpected_regexp = re.compile(unexpected_regexp)1002 match = unexpected_regexp.search(text)1007 unexpected_regexp.pattern,