(which)
| 104 | # file2 (which=='2') to stdout |
| 105 | |
| 106 | def restore(which): |
| 107 | restored = difflib.restore(sys.stdin.readlines(), which) |
| 108 | sys.stdout.writelines(restored) |
| 109 | |
| 110 | if __name__ == '__main__': |
| 111 | main(sys.argv[1:]) |
no test coverage detected
searching dependent graphs…