Searched refs:Differ (Results 1 – 17 of 17) sorted by relevance
25 import Differ from './api/Differ';55 private _differ: Differ;70 this._differ = new Differ(id);174 set differ(differ: Differ) {
59 .. class:: Differ62 human-readable differences or deltas. Differ uses :class:`SequenceMatcher`66 Each line of a :class:`Differ` delta begins with a two-letter code:224 Compare *a* and *b* (lists of strings); return a :class:`Differ`\ -style263 Given a *sequence* produced by :meth:`Differ.compare` or :func:`ndiff`, extract642 Differ Objects645 Note that :class:`Differ`\ -generated deltas make no claim to be **minimal**651 The :class:`Differ` class has this constructor:654 .. class:: Differ(linejunk=None, charjunk=None)674 :class:`Differ` objects are used (deltas generated) via a single method:[all …]
644 When specified, differences are computed by ``difflib.Differ``, using the same
32 import Differ from '../../../runtime/main/page/api/Differ';51 const differ = new Differ('test');
183 class Differ(Visitor): class251 differ = difflib.Differ()350 differ = Differ()
25 export default class Differ { class
90 diff = list(difflib.Differ().compare(["\tI am a buggy"],["\t\tI am a bug"]))97 diff = list(difflib.Differ().compare(["\t \t \t^"], ["\t \t \t^\n"]))
129 "runtime/main/page/api/Differ.ts",
724 class Differ: class1338 return Differ(linejunk, charjunk).compare(a, b)
1706 engine = difflib.Differ(charjunk=difflib.IS_CHARACTER_JUNK)
84 for l in difflib.Differ().compare (*ss):
230 # Differ from 'link' above only by -shared.
297 # Differ from 'link' above only by -shared.
162 for l in difflib.Differ().compare (*ss):
1021 * The :mod:`difflib` module now contains a new :class:`Differ` class for
13915 - Issue #1488943: difflib.Differ() doesn't always add hints for tab characters.24145 - difflib.ndiff() and difflib.Differ.compare() are generators now. This24526 - New class Differ and new functions ndiff() and restore() in difflib.py.