diff options
author | Brett Cannon <brett@python.org> | 2013-01-11 20:44:00 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2013-01-11 20:44:00 (GMT) |
commit | ed6b4c0020279c31b2c46107aac63b7a9170b907 (patch) | |
tree | 7a17ba6784e38b4993f12a960088d8845ffd6393 /Lib | |
parent | a9976b3e32b612e33dc9f6d8874a88d028de7424 (diff) | |
parent | b4fb2e2aac17975d9c5775eb46d6dec4d0603406 (diff) | |
download | cpython-ed6b4c0020279c31b2c46107aac63b7a9170b907.zip cpython-ed6b4c0020279c31b2c46107aac63b7a9170b907.tar.gz cpython-ed6b4c0020279c31b2c46107aac63b7a9170b907.tar.bz2 |
merge
Diffstat (limited to 'Lib')
-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: |