Home
last modified time | relevance | path

Searched refs:checkPatternError (Results 1 - 1 of 1) sorted by relevance

/third_party/python/Lib/test/
H A Dtest_re.py49 def checkPatternError(self, pattern, errmsg, pos=None): member in ReTests
259 self.checkPatternError(r'(?P<a>)(?P<a>)',
262 self.checkPatternError(r'(?P<a>(?P=a))',
264 self.checkPatternError(r'(?Pxy)', 'unknown extension ?Px')
265 self.checkPatternError(r'(?P<a>)(?P=a', 'missing ), unterminated name', 11)
266 self.checkPatternError(r'(?P=', 'missing group name', 4)
267 self.checkPatternError(r'(?P=)', 'missing group name', 4)
268 self.checkPatternError(r'(?P=1)', "bad character in group name '1'", 4)
269 self.checkPatternError(r'(?P=a)', "unknown group name 'a'")
270 self.checkPatternError(
[all...]

Completed in 2 milliseconds