Format a string in bold by overstriking.
(self, text)
| 1231 | repr = _repr_instance.repr |
| 1232 | |
| 1233 | def bold(self, text): |
| 1234 | """Format a string in bold by overstriking.""" |
| 1235 | return ''.join(ch + '\b' + ch for ch in text) |
| 1236 | |
| 1237 | def indent(self, text, prefix=' '): |
| 1238 | """Indent text by prepending a given prefix to each line.""" |