(self)
| 28 | positional_index: int = field(default=0, repr=False) |
| 29 | |
| 30 | def __repr__(self): |
| 31 | return "<matchgroup %r with %d results>" % (self.name, len(self.results)) |
| 32 | |
| 33 | |
| 34 | @dataclass(frozen=True, slots=True) |
nothing calls this directly
no outgoing calls
no test coverage detected