(self, level, msg, args)
| 18 | |
| 19 | class Log(old_Log): |
| 20 | def _log(self, level, msg, args): |
| 21 | if level >= self.threshold: |
| 22 | if args: |
| 23 | msg = msg % _fix_args(args) |
| 24 | if 0: |
| 25 | if msg.startswith('copying ') and msg.find(' -> ') != -1: |
| 26 | return |
| 27 | if msg.startswith('byte-compiling '): |
| 28 | return |
| 29 | print(_global_color_map[level](msg)) |
| 30 | sys.stdout.flush() |
| 31 | |
| 32 | def good(self, msg, *args): |
| 33 | """ |
nothing calls this directly
no test coverage detected