From e30a62763fcaa661931e88e7451d6b326aa24c0c Mon Sep 17 00:00:00 2001 From: Antoine Pitrou Date: Tue, 19 Jun 2012 16:33:39 +0200 Subject: 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. --- Python/freeze_importlib.py | 1 - 1 file changed, 1 deletion(-) (limited to 'Python/freeze_importlib.py') 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') -- cgit v1.2.1