Home
last modified time | relevance | path

Searched refs:find_longest_match (Results 1 - 2 of 2) sorted by relevance

/third_party/python/Lib/test/
H A Dtest_difflib.py513 match = sm.find_longest_match()
521 match = sm.find_longest_match(alo=2, blo=4)
529 match = sm.find_longest_match(bhi=5, blo=1)
541 match = sm.find_longest_match(0, len(a), 0, len(b))
/third_party/python/Lib/
H A Ddifflib.py254 # map at all, which stops the central find_longest_match method
305 def find_longest_match(self, alo=0, ahi=None, blo=0, bhi=None): member in SequenceMatcher
325 >>> s.find_longest_match(0, 5, 0, 9)
341 >>> s.find_longest_match(0, 5, 0, 9)
347 >>> s.find_longest_match(0, 2, 0, 1)
454 i, j, k = x = self.find_longest_match(alo, ahi, blo, bhi)

Completed in 4 milliseconds