(win=None, line=None, col=None, txt=None, attrs=None)
| 6 | DISTCC_DIR = os.getenv('DISTCC_DIR') or '%s/.distcc' % os.getenv('HOME') |
| 7 | |
| 8 | def write(win=None, line=None, col=None, txt=None, attrs=None): |
| 9 | if win != None: |
| 10 | win.move(line, col) |
| 11 | win.clrtoeol() |
| 12 | win.addstr(line, col, txt, attrs) |
| 13 | |
| 14 | def display_time(scr): |
| 15 | t = time.ctime().split() |
no test coverage detected