Searched refs:get_matching_blocks (Results 1 – 6 of 6) sorted by relevance
466 .. method:: get_matching_blocks()484 >>> s.get_matching_blocks()549 This is expensive to compute if :meth:`get_matching_blocks` or608 :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
82 first = s.get_matching_blocks()83 second = s.get_matching_blocks()
421 def get_matching_blocks(self): member in SequenceMatcher525 for ai, bj, size in self.get_matching_blocks():619 matches = sum(triple[-1] for triple in self.get_matching_blocks())
1321 * The :meth:`SequenceMatcher.get_matching_blocks` method in the :mod:`difflib`
2553 Improve difflib.SequenceManager.get_matching_blocks doc by adding
1603 - Issue #21635: The difflib SequenceMatcher.get_matching_blocks() method18127 - ``difflib``'s ``SequenceMatcher.get_matching_blocks()`` was changed to