Example #1
0
 def group(self, group=0, *groups):
     if not groups:
         return Match.group(self, group)
     return tuple(map(Match.group, (group,) + groups))
Example #2
0
 def group(self, group=0, *groups):
     if not groups:
         return Match.group(self, group)
     return tuple(map(Match.group, (group, ) + groups))
Example #3
0
 def __init__(self, match):
     Match.__init__(self, match.state)
Example #4
0
 def __init__(self, match):
     Match.__init__(self, match.state)