Home
last modified time | relevance | path

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

/third_party/python/Lib/re/
H A D_constants.py18 from _sre import MAXREPEAT, MAXGROUPS namespace
H A D_parser.py85 if self.groups > MAXGROUPS:
803 if condgroup >= MAXGROUPS:
1040 if index >= MAXGROUPS:
/third_party/python/Lib/test/
H A Dtest_re.py670 from re._constants import MAXGROUPS namespace
671 self.checkTemplateError('()', r'\g<%s>' % MAXGROUPS, 'xx',
672 'invalid group reference %d' % MAXGROUPS, 3)
673 self.checkPatternError(r'(?P<a>)(?(%d))' % MAXGROUPS,
674 'invalid group reference %d' % MAXGROUPS, 10)
2683 self.assertGreaterEqual(re._compiler.MAXGROUPS, 0)

Completed in 6 milliseconds