diff options
author | Georg Brandl <georg@python.org> | 2010-10-17 09:23:05 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-10-17 09:23:05 (GMT) |
commit | 8e9eb95c409ef541b5afb3a943ccbf5a5cef2466 (patch) | |
tree | 452627e8df249b1e431774281b75ab7615afbefe /Doc/library/difflib.rst | |
parent | edc9e7ff179250f3e648fa04e8510308cd21e243 (diff) | |
download | cpython-8e9eb95c409ef541b5afb3a943ccbf5a5cef2466.zip cpython-8e9eb95c409ef541b5afb3a943ccbf5a5cef2466.tar.gz cpython-8e9eb95c409ef541b5afb3a943ccbf5a5cef2466.tar.bz2 |
#8686: remove potentially confusing wording that does not add any value.
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 566de72..58bbe45 100644 --- a/Doc/library/difflib.rst +++ b/Doc/library/difflib.rst @@ -495,16 +495,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 |