Lines Matching defs:bplist
400 for (filename, lineno) in Breakpoint.bplist.keys():
411 if (filename, lineno) not in Breakpoint.bplist:
428 for bp in Breakpoint.bplist[filename, lineno][:]:
455 blist = Breakpoint.bplist[filename, line]
508 Breakpoint.bplist[filename, lineno] or []
664 the (file, line) tuple using bplist. The former points to a
679 bplist = {} # indexed by (file, lineno) tuple
699 if (file, line) in self.bplist:
700 self.bplist[file, line].append(self)
702 self.bplist[file, line] = [self]
707 Breakpoint.bplist = {}
719 self.bplist[index].remove(self)
720 if not self.bplist[index]:
722 del self.bplist[index]
815 The "active breakpoint" is the first entry in bplist[line, file] (which
824 possibles = Breakpoint.bplist[file, line]