commit | c1b3f63653d973e99311797540c6aad2448f97b2 | [log] [tgz] |
---|---|---|
author | Brett Cannon <brett@python.org> | Sun Apr 15 19:05:31 2012 -0400 |
committer | Brett Cannon <brett@python.org> | Sun Apr 15 19:05:31 2012 -0400 |
tree | 0c724231c6e1394e6a81eae2896d52a42f275b36 | |
parent | 8a1d04c64372d4706572671a21ff9d3e4a6374ca [diff] [blame] |
Try to get hg to treat importlib.h as binary.
diff --git a/Python/freeze_importlib.py b/Python/freeze_importlib.py index a069a0b..9cce0b1 100644 --- a/Python/freeze_importlib.py +++ b/Python/freeze_importlib.py
@@ -24,6 +24,7 @@ lines.append('};\n') with open(output_path, 'w') as output_file: output_file.write('\n'.join(lines)) + output_file.write('\u0000') if __name__ == '__main__':