mirror of
https://github.com/python/cpython.git
synced 2025-07-15 15:25:29 +00:00
Avoid compiler warning due to stray \x00
This commit is contained in:
parent
a49323537b
commit
a938c74751
2 changed files with 3 additions and 3 deletions
|
@ -22,9 +22,9 @@ def main(input_path, output_path):
|
|||
line.append('%d,' % c)
|
||||
lines.append(''.join(line))
|
||||
lines.append('};\n')
|
||||
with open(output_path, 'w') as output_file:
|
||||
with open(output_path, 'w', encoding='utf-8') as output_file:
|
||||
output_file.write('\n'.join(lines))
|
||||
output_file.write('\u0000')
|
||||
output_file.write('/* Mercurial binary marker: \x00 */')
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue