Home | History | Annotate | Download | only in python2.7

Lines Matching refs:bplist

267         if (filename, lineno) not in Breakpoint.bplist:
281 for bp in Breakpoint.bplist[filename, lineno][:]:
304 blist = Breakpoint.bplist[filename, line]
326 Breakpoint.bplist[filename, lineno] or []
457 the file,line tuple using bplist. The former points to a
468 bplist = {} # indexed by (file, lineno) tuple
488 if (file, line) in self.bplist:
489 self.bplist[file, line].append(self)
491 self.bplist[file, line] = [self]
497 self.bplist[index].remove(self)
498 if not self.bplist[index]:
500 del self.bplist[index]
569 possibles = Breakpoint.bplist[file,line]