diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-01-11 22:16:15 +0200 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-01-11 22:16:15 +0200 |
commit | dfae912d8056d7c607a99b456c8442b28d18ffd4 (patch) | |
tree | 78903031ff37c21f148ab7f76c359ec1a1f5dec1 /Lib/test/test_tools.py | |
parent | 8b41c2e259be8214b984b383f3f046152b2b510d (diff) | |
download | cpython-git-dfae912d8056d7c607a99b456c8442b28d18ffd4.tar.gz |
Issue #15539: Fix backup file creation in pindent.py on Windows
Diffstat (limited to 'Lib/test/test_tools.py')
-rw-r--r-- | Lib/test/test_tools.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_tools.py b/Lib/test/test_tools.py index 4756e4f6f7..f60b4c7c91 100644 --- a/Lib/test/test_tools.py +++ b/Lib/test/test_tools.py @@ -57,6 +57,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: |