summaryrefslogtreecommitdiff
path: root/Doc/library/difflib.rst
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2009-04-27 21:01:21 +0000
committerRaymond Hettinger <python@rcn.com>2009-04-27 21:01:21 +0000
commit45fc59964b904a63428a70e0ba24565a6dee3f19 (patch)
tree2c43ab9a9e8196aa0610b57cdb61bc5ab77c83e4 /Doc/library/difflib.rst
parentfa84d81aa302cf09bc48665f08a402188193e10c (diff)
downloadcpython-45fc59964b904a63428a70e0ba24565a6dee3f19.tar.gz
Add another example to the seealso section.
Diffstat (limited to 'Doc/library/difflib.rst')
-rw-r--r--Doc/library/difflib.rst11
1 files changed, 9 insertions, 2 deletions
diff --git a/Doc/library/difflib.rst b/Doc/library/difflib.rst
index 292c0cef19..433764c6c5 100644
--- a/Doc/library/difflib.rst
+++ b/Doc/library/difflib.rst
@@ -560,8 +560,15 @@ If you want to know how to change the first sequence into the second, use
insert a[8:8] b[8:17]
equal a[8:29] b[17:38]
-See also the function :func:`get_close_matches` in this module, which shows how
-simple code building on :class:`SequenceMatcher` can be used to do useful work.
+.. seealso::
+
+ * The :func:`get_close_matches` function in this module which shows how
+ simple code building on :class:`SequenceMatcher` can be used to do useful
+ work.
+
+ * `Simple version control recipe
+ <http://code.activestate.com/recipes/576729/>`_ for a small application
+ built with :class:`SequenceMatcher`.
.. _differ-objects: