(line)
| 24 | |
| 25 | with open(results_file_name, "w") as results_file: |
| 26 | def write(line): |
| 27 | # Print line to both results file and stderr |
| 28 | sys.stderr.write(line) |
| 29 | results_file.write(line) |
| 30 | |
| 31 | def has_one_sided_diff(dcmp, side, side_list): |
| 32 | # Check that we do not have files only on one side of the comparison |
no test coverage detected
searching dependent graphs…