Skip to content

Commit 82e9073

Browse files
committed
add superclass note
1 parent aae1de3 commit 82e9073

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

Doc/library/difflib.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ diffs. For comparing directories and files, see the :mod:`filecmp` module.
4343
.. class:: SequenceMatcher
4444
:noindex:
4545

46+
Implementation of :class:`SequenceMatcherBase`.
47+
4648
This is a flexible class for comparing pairs of sequences of any type, so long
4749
as the sequence elements are :term:`hashable`. The basic algorithm predates, and is a
4850
little fancier than, an algorithm published in the late 1980's by Ratcliff and

Lib/difflib.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -468,6 +468,8 @@ def real_quick_ratio(self):
468468
class SequenceMatcher(SequenceMatcherBase):
469469

470470
"""
471+
Implementation of SequenceMatcherBase.
472+
471473
SequenceMatcher is a flexible class for comparing pairs of sequences of
472474
any type, so long as the sequence elements are hashable. The basic
473475
algorithm predates, and is a little fancier than, an algorithm

0 commit comments

Comments
 (0)