Home
last modified time | relevance | path

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

/external/python/cpython3/Doc/library/
Ddifflib.rst420 .. method:: find_longest_match(alo, ahi, blo, bhi)
424 If *isjunk* was omitted or ``None``, :meth:`find_longest_match` returns
434 >>> s.find_longest_match(0, 5, 0, 9)
450 >>> s.find_longest_match(0, 5, 0, 9)
651 :meth:`~SequenceMatcher.find_longest_match` method's *isjunk*
/external/python/cpython2/Doc/library/
Ddifflib.rst393 .. method:: find_longest_match(alo, ahi, blo, bhi)
397 If *isjunk* was omitted or ``None``, :meth:`find_longest_match` returns
407 >>> s.find_longest_match(0, 5, 0, 9)
423 >>> s.find_longest_match(0, 5, 0, 9)
/external/python/cpython2/Lib/
Ddifflib.py348 def find_longest_match(self, alo, ahi, blo, bhi): member in SequenceMatcher
491 i, j, k = x = self.find_longest_match(alo, ahi, blo, bhi)
/external/python/cpython3/Lib/
Ddifflib.py336 def find_longest_match(self, alo, ahi, blo, bhi): member in SequenceMatcher
479 i, j, k = x = self.find_longest_match(alo, ahi, blo, bhi)
/external/python/cpython2/Misc/
DNEWS11038 - Decimal.as_tuple(), difflib.find_longest_match() and inspect