Remove boldface formatting from text.
(text)
| 1675 | os.unlink(filename) |
| 1676 | |
| 1677 | def plain(text): |
| 1678 | """Remove boldface formatting from text.""" |
| 1679 | return re.sub('.\b', '', text) |
| 1680 | |
| 1681 | def pipepager(text, cmd): |
| 1682 | """Page through text by feeding it to another program.""" |
no test coverage detected