Home | History | Annotate | Download | only in scripts

Lines Matching refs:line

18 a line of output for each object still alive at the end:

43 it's common for the line showing the dict of interned strings to display
45 (albeit painfully) because such containees don't have a line of their own.
76 # while the regexp object pat matches line. If whilematch is false, lines
77 # are read so long as pat doesn't match them. In any case, the first line
79 # (when whilematch is false), is lost, and fileiter will resume at the line
82 for line in fileiter:
83 if bool(pat.match(line)) == whilematch:
84 yield line
92 for line in read(fi, re.compile(r'^Remaining objects:$'), False):
99 for line in read(fi, re.compile(r'^Remaining object addresses:$'), False):
100 m = crack.match(line)
105 print '??? skipped:', line
108 for line in read(fi, crack, True):
110 m = crack.match(line)
114 print '??? new object created while tearing down:', line.rstrip()