Lines Matching refs:Differ
51 .. class:: Differ
54 human-readable differences or deltas. Differ uses :class:`SequenceMatcher`
58 Each line of a :class:`Differ` delta begins with a two-letter code:
214 Compare *a* and *b* (lists of strings); return a :class:`Differ`\ -style
254 Given a *sequence* produced by :meth:`Differ.compare` or :func:`ndiff`, extract
603 Differ Objects
606 Note that :class:`Differ`\ -generated deltas make no claim to be **minimal**
612 The :class:`Differ` class has this constructor:
615 .. class:: Differ([linejunk[, charjunk]])
628 :class:`Differ` objects are used (deltas generated) via a single method:
631 .. method:: Differ.compare(a, b)
645 Differ Example
667 Next we instantiate a Differ object:
669 >>> d = Differ()
671 Note that when instantiating a :class:`Differ` object we may pass functions to
672 filter out line and character "junk." See the :meth:`Differ` constructor for