]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Add another example to the seealso section.
authorRaymond Hettinger <python@rcn.com>
Mon, 27 Apr 2009 21:01:21 +0000 (21:01 +0000)
committerRaymond Hettinger <python@rcn.com>
Mon, 27 Apr 2009 21:01:21 +0000 (21:01 +0000)
Doc/library/difflib.rst

index 292c0cef1933ff06d13df2b7bd38105c8707dba6..433764c6c5711eebc48c20c5aa3fc66fe5dec733 100644 (file)
@@ -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: