Lines Matching refs:Bdb
8 __all__ = ["BdbQuit", "Bdb", "Breakpoint"]
17 class Bdb:
103 print('bdb.Bdb.dispatch: unknown debugging event:', repr(event))
396 list, which can have breakpoints set by another Bdb instance. This
406 A list of breakpoints is maintained in the Bdb instance and in
407 the Breakpoint class. If a breakpoint in the Bdb instance no
409 Bdb instance.
653 """Start debugging with a Bdb instance from the caller's frame."""
654 Bdb().set_trace()
676 # you cannot have more than one active Bdb instance.
864 class Tdb(Bdb):