Return a compiled regular expression.
(self)
| 241 | self.md = md |
| 242 | |
| 243 | def getCompiledRegExp(self) -> re.Pattern: |
| 244 | """ Return a compiled regular expression. """ |
| 245 | return self.compiled_re |
| 246 | |
| 247 | def handleMatch(self, m: re.Match[str]) -> etree.Element | str: |
| 248 | """Return a ElementTree element from the given match. |