summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2013-01-11 20:43:34 (GMT)
committerBrett Cannon <brett@python.org>2013-01-11 20:43:34 (GMT)
commit4d35c57c9c4e68b9dca7f49acb90030e216595bf (patch)
treeb57ab27b024e10c86f4358c39fbc9decab50b458 /Lib
parentc57f9f9419154ffa6b653da58a7eb3f35da478c7 (diff)
parent1829bb4591f0e088df31efe99778792da676f044 (diff)
downloadcpython-4d35c57c9c4e68b9dca7f49acb90030e216595bf.zip
cpython-4d35c57c9c4e68b9dca7f49acb90030e216595bf.tar.gz
cpython-4d35c57c9c4e68b9dca7f49acb90030e216595bf.tar.bz2
merge
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_tools.py1
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: