Home | History | Annotate | Download | only in python2.7

Lines Matching refs:charjunk

853     __init__(linejunk=None, charjunk=None)
860 def __init__(self, linejunk=None, charjunk=None):
875 - `charjunk`: A function that should accept a string of length 1. The
882 self.charjunk = charjunk
967 cruncher = SequenceMatcher(self.charjunk)
1316 def ndiff(a, b, linejunk=None, charjunk=IS_CHARACTER_JUNK):
1320 Optional keyword parameters `linejunk` and `charjunk` are for filter
1328 - charjunk: A function that should accept a string of length 1. The
1350 return Differ(linejunk, charjunk).compare(a, b)
1353 charjunk=IS_CHARACTER_JUNK):
1362 charjunk -- passed on to ndiff (see ndiff documentation)
1392 diff_lines_iterator = ndiff(fromlines,tolines,linejunk,charjunk)
1695 charjunk=IS_CHARACTER_JUNK):
1702 linejunk,charjunk -- keyword arguments passed into ndiff() (used to by
1709 self._charjunk = charjunk
1975 charjunk=self._charjunk)