Remove boldface formatting from text.
(text: str)
| 96 | # Minimal alternatives for cases where _pyrepl is absent. |
| 97 | |
| 98 | def plain(text: str) -> str: |
| 99 | """Remove boldface formatting from text.""" |
| 100 | return re.sub('.\b', '', text) |
| 101 | |
| 102 | def plain_pager(text: str, title: str = '') -> None: |
| 103 | """Simply print unformatted text. This is the ultimate fallback.""" |
nothing calls this directly
no test coverage detected
searching dependent graphs…