Home
last modified time | relevance | path

Searched refs:charjunk (Results 1 – 2 of 2) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Ddifflib.py860 def __init__(self, linejunk=None, charjunk=None): argument
882 self.charjunk = charjunk
967 cruncher = SequenceMatcher(self.charjunk)
1316 def ndiff(a, b, linejunk=None, charjunk=IS_CHARACTER_JUNK): argument
1350 return Differ(linejunk, charjunk).compare(a, b)
1353 charjunk=IS_CHARACTER_JUNK): argument
1392 diff_lines_iterator = ndiff(fromlines,tolines,linejunk,charjunk)
1695 charjunk=IS_CHARACTER_JUNK): argument
1709 self._charjunk = charjunk
1975 charjunk=self._charjunk)
Ddoctest.py1589 engine = difflib.Differ(charjunk=difflib.IS_CHARACTER_JUNK)