diff options
author | Brett Cannon <brett@python.org> | 2013-01-11 20:43:34 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2013-01-11 20:43:34 (GMT) |
commit | 4d35c57c9c4e68b9dca7f49acb90030e216595bf (patch) | |
tree | b57ab27b024e10c86f4358c39fbc9decab50b458 /Lib | |
parent | c57f9f9419154ffa6b653da58a7eb3f35da478c7 (diff) | |
parent | 1829bb4591f0e088df31efe99778792da676f044 (diff) | |
download | cpython-4d35c57c9c4e68b9dca7f49acb90030e216595bf.zip cpython-4d35c57c9c4e68b9dca7f49acb90030e216595bf.tar.gz cpython-4d35c57c9c4e68b9dca7f49acb90030e216595bf.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: |