diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-01-11 20:21:45 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-01-11 20:21:45 (GMT) |
commit | 1829bb4591f0e088df31efe99778792da676f044 (patch) | |
tree | 71a91714b3b8de78ea9d487c298648d2cff9e670 /Lib/test | |
parent | cba18fefdc1abee9232825d8a366227a1fcabe82 (diff) | |
parent | b4fb2e2aac17975d9c5775eb46d6dec4d0603406 (diff) | |
download | cpython-1829bb4591f0e088df31efe99778792da676f044.zip cpython-1829bb4591f0e088df31efe99778792da676f044.tar.gz cpython-1829bb4591f0e088df31efe99778792da676f044.tar.bz2 |
Issue #15539: Fix a backup file creation in pindent.py on Windows.
Diffstat (limited to 'Lib/test')
-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 cfa5dbc..f971515 100644 --- a/Lib/test/test_tools.py +++ b/Lib/test/test_tools.py @@ -59,6 +59,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: |