diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2012-06-19 16:33:39 +0200 |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2012-06-19 16:33:39 +0200 |
commit | e30a62763fcaa661931e88e7451d6b326aa24c0c (patch) | |
tree | eb990d7b0e6a8b30aa4995265ae2c51bcccda9b9 /Python/freeze_importlib.py | |
parent | e9485e555ea045b2c3e80b4a0c3647ec41768212 (diff) | |
download | cpython-e30a62763fcaa661931e88e7451d6b326aa24c0c.tar.gz |
Issue #15103: remove the NUL character (serving as a Mercurial binary marker) from Python/importlib.h.
Instead the email notification hook uses a configuration option to omit importlib.h diffs.
Diffstat (limited to 'Python/freeze_importlib.py')
-rw-r--r-- | Python/freeze_importlib.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Python/freeze_importlib.py b/Python/freeze_importlib.py index b96e7f2f2f..14a044d0cd 100644 --- a/Python/freeze_importlib.py +++ b/Python/freeze_importlib.py @@ -24,7 +24,6 @@ def main(input_path, output_path): lines.append('};\n') with open(output_path, 'w', encoding='utf-8') as output_file: output_file.write('\n'.join(lines)) - output_file.write('/* Mercurial binary marker: \x00 */') # Avoid a compiler warning for lack of EOL output_file.write('\n') |