summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2009-04-27 21:12:54 (GMT)
committerRaymond Hettinger <python@rcn.com>2009-04-27 21:12:54 (GMT)
commit8b8f8cc1b00900b5af7d79fc56e9c2a343990319 (patch)
treee135f76bf0a84811898cb341a9411980a5b9cfb2 /Doc
parenta016debad07f11c3b85131b4205305d190ac9eca (diff)
downloadcpython-8b8f8cc1b00900b5af7d79fc56e9c2a343990319.zip
cpython-8b8f8cc1b00900b5af7d79fc56e9c2a343990319.tar.gz
cpython-8b8f8cc1b00900b5af7d79fc56e9c2a343990319.tar.bz2
Add example to the seealso section.
Diffstat (limited to 'Doc')
-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 addd813..d749e14 100644
--- a/Doc/library/difflib.rst
+++ b/Doc/library/difflib.rst
@@ -577,8 +577,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: