Searched refs:unexpected_regexp (Results 1 – 1 of 1) sorted by relevance
1030 def assertNotRegexpMatches(self, text, unexpected_regexp, msg=None): argument1032 if isinstance(unexpected_regexp, basestring):1033 unexpected_regexp = re.compile(unexpected_regexp)1034 match = unexpected_regexp.search(text)1039 unexpected_regexp.pattern,