Compile the patterns for matching to file name and line number.
()
| 21 | |
| 22 | |
| 23 | def compile_progs(): |
| 24 | "Compile the patterns for matching to file name and line number." |
| 25 | global file_line_progs |
| 26 | file_line_progs = [re.compile(pat, re.IGNORECASE) |
| 27 | for pat in file_line_pats] |
| 28 | |
| 29 | |
| 30 | def file_line_helper(line): |
no test coverage detected
searching dependent graphs…