Format a string in bold by overstriking.
(self, text)
| 1223 | repr = _repr_instance.repr |
| 1224 | |
| 1225 | def bold(self, text): |
| 1226 | """Format a string in bold by overstriking.""" |
| 1227 | return ''.join(ch + '\b' + ch for ch in text) |
| 1228 | |
| 1229 | def indent(self, text, prefix=' '): |
| 1230 | """Indent text by prepending a given prefix to each line.""" |