(*args)
| 37 | return result |
| 38 | |
| 39 | def msg(*args): |
| 40 | if USE_ANSI: sys.stdout.write('\x1b[1;34m') |
| 41 | sys.stdout.write('> ') |
| 42 | if USE_ANSI: sys.stdout.write('\x1b[1;32m') |
| 43 | for arg in args: |
| 44 | sys.stdout.write(str(arg)) |
| 45 | if USE_ANSI: sys.stdout.write('\x1b[0m') |
| 46 | sys.stdout.write('\n') |
| 47 | sys.stdout.flush() |
| 48 | |
| 49 | def msg_trace(*args): |
| 50 | if TRACE_UPDATE_DOCS: |
no outgoing calls
no test coverage detected