Home
last modified time | relevance | path

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

/third_party/python/Doc/library/
Ddifflib.rst466 .. method:: get_matching_blocks()
484 >>> s.get_matching_blocks()
549 This is expensive to compute if :meth:`get_matching_blocks` or
608 :meth:`get_matching_blocks` is handy:
610 >>> for block in s.get_matching_blocks():
616 Note that the last tuple returned by :meth:`get_matching_blocks` is always a
/third_party/python/Lib/test/
Dtest_difflib.py82 first = s.get_matching_blocks()
83 second = s.get_matching_blocks()
/third_party/python/Lib/
Ddifflib.py421 def get_matching_blocks(self): member in SequenceMatcher
525 for ai, bj, size in self.get_matching_blocks():
619 matches = sum(triple[-1] for triple in self.get_matching_blocks())
/third_party/python/Doc/whatsnew/
D2.5.rst1321 * The :meth:`SequenceMatcher.get_matching_blocks` method in the :mod:`difflib`
/third_party/python/Misc/NEWS.d/
D3.8.0a1.rst2553 Improve difflib.SequenceManager.get_matching_blocks doc by adding
/third_party/python/Misc/
DHISTORY1603 - Issue #21635: The difflib SequenceMatcher.get_matching_blocks() method
18127 - ``difflib``'s ``SequenceMatcher.get_matching_blocks()`` was changed to