Subclass of TextDoc which overrides string styling
| 1624 | return line |
| 1625 | |
| 1626 | class _PlainTextDoc(TextDoc): |
| 1627 | """Subclass of TextDoc which overrides string styling""" |
| 1628 | def bold(self, text): |
| 1629 | return text |
| 1630 | |
| 1631 | # --------------------------------------------------------- user interfaces |
| 1632 |
no outgoing calls
no test coverage detected
searching dependent graphs…