Home
last modified time | relevance | path

Searched refs:find_longest_match (Results 1 – 4 of 4) sorted by relevance

/third_party/python/Lib/test/
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/Doc/library/
Ddifflib.rst425 .. method:: find_longest_match(alo=0, ahi=None, blo=0, bhi=None)
429 If *isjunk* was omitted or ``None``, :meth:`find_longest_match` returns
439 >>> s.find_longest_match(0, 5, 0, 9)
455 >>> s.find_longest_match(0, 5, 0, 9)
671 :meth:`~SequenceMatcher.find_longest_match` method's *isjunk*
/third_party/python/Lib/
Ddifflib.py305 def find_longest_match(self, alo=0, ahi=None, blo=0, bhi=None): member in SequenceMatcher
454 i, j, k = x = self.find_longest_match(alo, ahi, blo, bhi)
/third_party/python/Misc/NEWS.d/
D3.9.0b1.rst535 :meth:`difflib.SequenceMatcher.find_longest_match()`.