(self, msg, *args)
| 481 | self.load_module() |
| 482 | |
| 483 | def dbg(self, msg, *args): |
| 484 | if not self._debug_: return |
| 485 | if len(args) > 0: |
| 486 | msg = msg % tuple(args) |
| 487 | print('DEBUG: %s' % msg) |
| 488 | |
| 489 | def cmdline_check(self): |
| 490 | cp=windows.current_process |
no outgoing calls
no test coverage detected