Lines Matching full:lineno
176 self.counter = self.counts.copy() # map (filename, lineno) to count
255 # turn the counts data ("(filename, lineno) = count") into something
258 for filename, lineno in self.counts:
260 lines_hit[lineno] = self.counts[(filename, lineno)]
326 for lineno, line in enumerate(lines, 1):
329 if lineno in lines_hit:
330 outfile.write("%5d: " % lines_hit[lineno])
339 if lineno in lnotab and not PRAGMA_NOCOVER in line:
352 for _, lineno in dis.findlinestarts(code):
353 if lineno not in strs:
354 linenos[lineno] = 1
359 """Return lineno dict for all code objects reachable from code."""
360 # get all of the lineno information from the code of this scope level
573 lineno = frame.f_lineno
574 key = filename, lineno
580 print("%s(%d): %s" % (bname, lineno,
581 linecache.getline(filename, lineno)), end='')
588 lineno = frame.f_lineno
593 print("%s(%d): %s" % (bname, lineno,
594 linecache.getline(filename, lineno)), end='')
600 lineno = frame.f_lineno
601 key = filename, lineno