Wrapper for colorize(text, 'yellow')
(text, attrib=None)
| 140 | return colorize(text, "red", attrib) |
| 141 | |
| 142 | def yellow(text, attrib=None): |
| 143 | """Wrapper for colorize(text, 'yellow')""" |
| 144 | return colorize(text, "yellow", attrib) |
| 145 | |
| 146 | def blue(text, attrib=None): |
| 147 | """Wrapper for colorize(text, 'blue')""" |