| 243 | return EndBracketMatch(match) |
| 244 | return None |
| 245 | class EndBracketMatch: |
| 246 | def __init__(self, match): |
| 247 | self.match = match |
| 248 | def start(self, n): |
| 249 | return self.match.end(n) |
| 250 | sgmllib.endbracket = EndBracketRegEx() |
| 251 | |
| 252 | SUPPORTED_VERSIONS = {'': 'unknown', |