(which)
| 117 | # file2 (which=='2') to stdout |
| 118 | |
| 119 | def restore(which): |
| 120 | restored = difflib.restore(sys.stdin.readlines(), which) |
| 121 | sys.stdout.writelines(restored) |
| 122 | |
| 123 | if __name__ == '__main__': |
| 124 | args = sys.argv[1:] |
no test coverage detected