In Python debugger pydb, how can I set breakpoing in a function in another module? -
i can use graphical debugger using -
ddd --pydb script.py
i can set breakpoints in current module or module using -
b filename:linenumber
.
but how can set breakpoint @ function in "another" module?
(if in current module can b funcname
)
Comments
Post a Comment