(context, line, stream=sys.stdout)
| 81 | |
| 82 | |
| 83 | def log_verbose(context, line, stream=sys.stdout): |
| 84 | if context.verbose: |
| 85 | stream.write(line) |
| 86 | else: |
| 87 | hidden_output.append((stream, line)) |
| 88 | |
| 89 | |
| 90 | def delete_glob(pattern): |
no test coverage detected
searching dependent graphs…