30 beg_pat = re.compile(
r"NameAuditor.*?About to Enter "
33 end_pat = re.compile(
r"NameAuditor.*?Just Exited "
40 for l
in open(fname,
'r'):
42 beg = re.match(beg_pat, l)
43 end = re.match(end_pat, l)
48 component = beg.group(
'CompName')
51 graph += [ (stack, component) ]
54 component = end.group(
'CompName')