| 254 | return EndBracketMatch(match) |
| 255 | return None |
| 256 | class EndBracketMatch: |
| 257 | def __init__(self, match): |
| 258 | self.match = match |
| 259 | def start(self, n): |
| 260 | return self.match.end(n) |
| 261 | endbracket = _EndBracketRegEx() |
| 262 | |
| 263 |
no outgoing calls
no test coverage detected
searching dependent graphs…