diff options
author | Michael Foord <fuzzyman@voidspace.org.uk> | 2010-06-05 23:59:34 (GMT) |
---|---|---|
committer | Michael Foord <fuzzyman@voidspace.org.uk> | 2010-06-05 23:59:34 (GMT) |
commit | d50a6b94b71ea4eab395472cfc0e083d3d795392 (patch) | |
tree | 3fa5d7f8f247902318bb4b788f101d89b711eeed /Lib | |
parent | 98b3e7652b39bc889aa260abb38b6c7b1fadf9ab (diff) | |
download | cpython-d50a6b94b71ea4eab395472cfc0e083d3d795392.zip cpython-d50a6b94b71ea4eab395472cfc0e083d3d795392.tar.gz cpython-d50a6b94b71ea4eab395472cfc0e083d3d795392.tar.bz2 |
Merged revisions 81770 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r81770 | michael.foord | 2010-06-06 00:58:40 +0100 (Sun, 06 Jun 2010) | 1 line
Code formatting change.
........
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/unittest/case.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/unittest/case.py b/Lib/unittest/case.py index 3a87a2f..d048303 100644 --- a/Lib/unittest/case.py +++ b/Lib/unittest/case.py @@ -175,6 +175,7 @@ class TestCase(object): # This attribute sets the maximum length of a diff in failure messsages # by assert methods using difflib. It is looked up as an instance attribute # so can be configured by individual tests if required. + maxDiff = 80*8 # Attribute used by TestSuite for classSetUp |