Lines Matching refs:ndiff
97 *linejunk* and *charjunk* are optional keyword arguments passed into :func:`ndiff`
99 :func:`ndiff` documentation for argument default values and descriptions.
212 .. function:: ndiff(a, b[, linejunk][, charjunk])
234 :file:`Tools/scripts/ndiff.py` is a command-line front-end to this function.
236 >>> diff = ndiff('one\ntwo\nthree\n'.splitlines(1),
254 Given a *sequence* produced by :meth:`Differ.compare` or :func:`ndiff`, extract
260 >>> diff = ndiff('one\ntwo\nthree\n'.splitlines(1),
322 default for parameter *linejunk* in :func:`ndiff` before Python 2.3.
329 parameter *charjunk* in :func:`ndiff`.
723 * ndiff: lists every line and highlights interline changes.
743 help='Produce a ndiff format diff')
769 diff = difflib.ndiff(fromlines, tolines)