Try to get hg to treat importlib.h as binary.

This commit is contained in:
Brett Cannon 2012-04-15 19:05:31 -04:00
parent 8a1d04c643
commit c1b3f63653
2 changed files with 2 additions and 0 deletions

View file

@ -24,6 +24,7 @@ def main(input_path, output_path):
lines.append('};\n')
with open(output_path, 'w') as output_file:
output_file.write('\n'.join(lines))
output_file.write('\u0000')
if __name__ == '__main__':