From: Raymond Hettinger Date: Mon, 27 Apr 2009 21:01:21 +0000 (+0000) Subject: Add another example to the seealso section. X-Git-Tag: v3.1b1~127 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=58c8c262f82bf82fe337089685ef14f35a8701b5;p=thirdparty%2FPython%2Fcpython.git Add another example to the seealso section. --- diff --git a/Doc/library/difflib.rst b/Doc/library/difflib.rst index 292c0cef1933..433764c6c571 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 + `_ for a small application + built with :class:`SequenceMatcher`. .. _differ-objects: