Home
last modified time | relevance | path

Searched refs:get_matching_blocks (Results 1 – 12 of 12) sorted by relevance

/external/python/cpython2/Lib/test/
Dtest_difflib.py65 first = s.get_matching_blocks()
66 second = s.get_matching_blocks()
/external/python/cpython3/Lib/test/
Dtest_difflib.py82 first = s.get_matching_blocks()
83 second = s.get_matching_blocks()
/external/python/cpython3/Doc/library/
Ddifflib.rst458 .. method:: get_matching_blocks()
476 >>> s.get_matching_blocks()
541 This is expensive to compute if :meth:`get_matching_blocks` or
590 :meth:`get_matching_blocks` is handy:
592 >>> for block in s.get_matching_blocks():
598 Note that the last tuple returned by :meth:`get_matching_blocks` is always a
/external/python/cpython2/Doc/library/
Ddifflib.rst432 .. method:: get_matching_blocks()
453 >>> s.get_matching_blocks()
520 This is expensive to compute if :meth:`get_matching_blocks` or
569 :meth:`get_matching_blocks` is handy:
571 >>> for block in s.get_matching_blocks():
577 Note that the last tuple returned by :meth:`get_matching_blocks` is always a
/external/python/cpython2/Lib/
Ddifflib.py458 def get_matching_blocks(self): member in SequenceMatcher
562 for ai, bj, size in self.get_matching_blocks():
657 self.get_matching_blocks(), 0)
/external/python/cpython3/Lib/
Ddifflib.py446 def get_matching_blocks(self): member in SequenceMatcher
550 for ai, bj, size in self.get_matching_blocks():
644 matches = sum(triple[-1] for triple in self.get_matching_blocks())
/external/python/cpython2/Misc/NEWS.d/
D2.7.8.rst124 The difflib SequenceMatcher.get_matching_blocks() method cache didn't match
/external/python/cpython3/Misc/NEWS.d/
D3.7.2rc1.rst368 Improve difflib.SequenceManager.get_matching_blocks doc by adding
/external/python/cpython3/Doc/whatsnew/
D2.5.rst1321 * The :meth:`SequenceMatcher.get_matching_blocks` method in the :mod:`difflib`
/external/python/cpython2/Doc/whatsnew/
D2.5.rst1320 * The :meth:`SequenceMatcher.get_matching_blocks` method in the :mod:`difflib`
/external/python/cpython3/Misc/
DHISTORY1603 - Issue #21635: The difflib SequenceMatcher.get_matching_blocks() method
18127 - ``difflib``'s ``SequenceMatcher.get_matching_blocks()`` was changed to
/external/python/cpython2/Misc/
DHISTORY743 - ``difflib``'s ``SequenceMatcher.get_matching_blocks()`` was changed to