diff options
Diffstat (limited to 'Doc/library/difflib.rst')
-rw-r--r-- | Doc/library/difflib.rst | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Doc/library/difflib.rst b/Doc/library/difflib.rst index c9d1eee..3fd44a6 100644 --- a/Doc/library/difflib.rst +++ b/Doc/library/difflib.rst @@ -500,16 +500,11 @@ The :class:`SequenceMatcher` class has this constructor: Return an upper bound on :meth:`ratio` relatively quickly. - This isn't defined beyond that it is an upper bound on :meth:`ratio`, and - is faster to compute. - .. method:: real_quick_ratio() Return an upper bound on :meth:`ratio` very quickly. - This isn't defined beyond that it is an upper bound on :meth:`ratio`, and - is faster to compute than either :meth:`ratio` or :meth:`quick_ratio`. The three methods that return the ratio of matching to total characters can give different results due to differing levels of approximation, although |