(string)
| 20 | return "\033[1;35m" + unicode(string) + "\033[0m" |
| 21 | |
| 22 | def white(string): |
| 23 | return "\033[1;37m" + unicode(string) + "\033[0m" |
| 24 | |
| 25 | def println(line, content): |
| 26 | print "\033[" + str(line) + ";0H\033[2K" + content |
no outgoing calls
no test coverage detected