Lines Matching refs:file
366 # Set_break prints out the breakpoint line and file:lineno.
426 # If there's only one bp in the list for that file,line
443 self._prune_breaks(bp.file, bp.line)
664 the (file, line) tuple using bplist. The former points to a
679 bplist = {} # indexed by (file, lineno) tuple
684 def __init__(self, file, line, temporary=False, cond=None, funcname=None):
688 self.file = file # This better be in canonical form!
699 if (file, line) in self.bplist:
700 self.bplist[file, line].append(self)
702 self.bplist[file, line] = [self]
711 """Delete the breakpoint from the list associated to a file:line.
714 the entry for the file:line.
717 index = (self.file, self.line)
740 print(self.bpformat(), file=out)
746 status, file:line position, break condition, number of times to
759 self.file, self.line)
774 return 'breakpoint %s at %s:%s' % (self.number, self.file, self.line)
811 def effective(file, line, frame):
815 The "active breakpoint" is the first entry in bplist[line, file] (which
824 possibles = Breakpoint.bplist[file, line]