Home | History | Annotate | Download | only in Lib

Lines Matching refs:IS_LINE_JUNK

30            'Differ','IS_CHARACTER_JUNK', 'IS_LINE_JUNK', 'context_diff',
866 `IS_LINE_JUNK` may be used to filter out lines without visible
1106 def IS_LINE_JUNK(line, pat=re.compile(r"\s*#?\s*$").match):
1112 >>> IS_LINE_JUNK('\n')
1114 >>> IS_LINE_JUNK(' # \n')
1116 >>> IS_LINE_JUNK('hello\n')