(self)
| 114 | self.callee_list = callee_list |
| 115 | |
| 116 | def lines(self): |
| 117 | result = [] |
| 118 | for str_rep in self.callee_list: |
| 119 | match = self.CALLERS_RE.match(str_rep) |
| 120 | assert match |
| 121 | result.append(match.group(1)) |
| 122 | for callee in (match.group(2) or '').split(): |
| 123 | result.append('\t' + callee) |
| 124 | return result |
| 125 | |
| 126 | |
| 127 | class SuspectCollectorTest(unittest.TestCase): |
no test coverage detected