Searched refs:lines_hit (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython2/Lib/ |
D | trace.py | 300 lines_hit = per_file[filename] = per_file.get(filename, {}) 301 lines_hit[lineno] = self.counts[(filename, lineno)] 357 def write_results_file(self, path, lines, lnotab, lines_hit): argument 373 if lineno in lines_hit: 374 outfile.write("%5d: " % lines_hit[lineno])
|
/external/python/cpython3/Lib/ |
D | trace.py | 242 lines_hit = per_file[filename] = per_file.get(filename, {}) 243 lines_hit[lineno] = self.counts[(filename, lineno)] 296 def write_results_file(self, path, lines, lnotab, lines_hit, encoding=None): argument 313 if lineno in lines_hit: 314 outfile.write("%5d: " % lines_hit[lineno])
|