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
91 for line in read(fi, re.compile(r'^Remaining objects:$'), False):
98 for line in read(fi, re.compile(r'^Remaining object addresses:$'), False):
99 m = crack.match(line)
104 print('??? skipped:', line)
107 for line in read(fi, crack, True):
109 m = crack.match(line)
113 print('??? new object created while tearing down:', line.rstrip())