Method: difflib.HtmlDiff.__init__
Calls: 6, Exceptions: 0, Paths: 1Back
Path 1: 6 calls (1.0)
8 (5) 2 (1)
None (5) 14 (1)
None (6)
IS_CHARACTER_JUNK def (6)
1def __init__(self,tabsize=8,wrapcolumn=None,linejunk=None,
2 charjunk=IS_CHARACTER_JUNK):
3 """HtmlDiff instance initializer
4
5 Arguments:
6 tabsize -- tab stop spacing, defaults to 8.
7 wrapcolumn -- column number where lines are broken and wrapped,
8 defaults to None where lines are not wrapped.
9 linejunk,charjunk -- keyword arguments passed into ndiff() (used by
10 HtmlDiff() to generate the side by side HTML differences). See
11 ndiff() documentation for argument default values and descriptions.
12 """
13 self._tabsize = tabsize
14 self._wrapcolumn = wrapcolumn
15 self._linejunk = linejunk
16 self._charjunk = charjunk