Home
last modified time | relevance | path

Searched refs:bplist (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Lib/
Dbdb.py267 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 []
468 bplist = {} # indexed by (file, lineno) tuple variable in Breakpoint
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]:
[all …]
/external/python/cpython2/Doc/library/
Dbdb.rst29 and by ``(file, line)`` pairs through :attr:`bplist`. The former points to a