Searched defs:_diffThreshold (Results 1 - 2 of 2) sorted by relevance

/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/
H A Dcase.py172 # If a string is longer than _diffThreshold, use normal comparison instead
174 _diffThreshold = 2**16 variable in class:TestCase
914 if (len(first) > self._diffThreshold or
915 len(second) > self._diffThreshold):
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/
H A Dcase.py172 # If a string is longer than _diffThreshold, use normal comparison instead
174 _diffThreshold = 2**16 variable in class:TestCase
914 if (len(first) > self._diffThreshold or
915 len(second) > self._diffThreshold):

Completed in 65 milliseconds