~ubuntu-branches/ubuntu/lucid/python2.6/lucid

« back to all changes in this revision

Viewing changes to Doc/library/difflib.rst

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2010-03-11 13:30:19 UTC
  • mto: (10.1.13 sid)
  • mto: This revision was merged to the branch mainline in revision 44.
  • Revision ID: james.westby@ubuntu.com-20100311133019-sblbooa3uqrkoe70
Tags: upstream-2.6.5~rc2
ImportĀ upstreamĀ versionĀ 2.6.5~rc2

Show diffs side-by-side

added added

removed removed

Lines of Context:
577
577
   insert a[8:8] b[8:17]
578
578
    equal a[8:29] b[17:38]
579
579
 
580
 
See also the function :func:`get_close_matches` in this module, which shows how
581
 
simple code building on :class:`SequenceMatcher` can be used to do useful work.
 
580
.. seealso::
 
581
 
 
582
   * The :func:`get_close_matches` function in this module which shows how
 
583
     simple code building on :class:`SequenceMatcher` can be used to do useful
 
584
     work.
 
585
 
 
586
   * `Simple version control recipe
 
587
     <http://code.activestate.com/recipes/576729/>`_ for a small application
 
588
     built with :class:`SequenceMatcher`.
582
589
 
583
590
 
584
591
.. _differ-objects: