From a3a01b6ac3990ddd662b4bcf7de29050bd15c651 Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Fri, 11 Jan 2013 22:18:17 +0200 Subject: Issue #15539: Fix a backup file creation in pindent.py on Windows. --- Lib/test/test_tools.py | 1 + 1 file changed, 1 insertion(+) (limited to 'Lib/test/test_tools.py') diff --git a/Lib/test/test_tools.py b/Lib/test/test_tools.py index 4b33733ad4..9403da71fb 100644 --- a/Lib/test/test_tools.py +++ b/Lib/test/test_tools.py @@ -58,6 +58,7 @@ class PindentTests(unittest.TestCase): return '\n'.join(line.lstrip() for line in data.splitlines()) + '\n' def test_selftest(self): + self.maxDiff = None with temp_dir() as directory: data_path = os.path.join(directory, '_test.py') with open(self.script) as f: -- cgit v1.2.1