(self, text)
| 597 | self.pattern = re.compile('|'.join(itertools.chain(full_patterns, inline_patterns))) |
| 598 | |
| 599 | def strip(self, text): |
| 600 | return self.pattern.sub('', text).rstrip() |
| 601 | |
| 602 | def wrap(self, text): |
| 603 | return _Line(text, self) |
no test coverage detected