Searched refs:find_longest_match (Results 1 – 4 of 4) sorted by relevance
/third_party/python/Lib/test/ |
D | test_difflib.py | 513 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/ |
D | difflib.rst | 425 .. 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/ |
D | difflib.py | 305 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/ |
D | 3.9.0b1.rst | 535 :meth:`difflib.SequenceMatcher.find_longest_match()`.
|