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

Lines Matching defs:IS_LINE_JUNK

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