[Python-checkins] r72049 - python/branches/py3k/Doc/library/difflib.rst

raymond.hettinger python-checkins at python.org
Mon Apr 27 23:01:21 CEST 2009


Author: raymond.hettinger
Date: Mon Apr 27 23:01:21 2009
New Revision: 72049

Log:
Add another example to the seealso section.

Modified:
   python/branches/py3k/Doc/library/difflib.rst

Modified: python/branches/py3k/Doc/library/difflib.rst
==============================================================================
--- python/branches/py3k/Doc/library/difflib.rst	(original)
+++ python/branches/py3k/Doc/library/difflib.rst	Mon Apr 27 23:01:21 2009
@@ -560,8 +560,15 @@
    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:


More information about the Python-checkins mailing list