Consider a piece of code like this:
JavaScript
x
3
1
breakpoint()
2
x = foo(bar(baz()))
3
In PDB (or PDB++), the step
command normally would step into the baz()
function.
How can I step into the call to bar()
or baz()
instead of baz()
? I don’t see anything about this in the PDB or PDB++ documentation.
Advertisement
Answer
Look at the list of debugger commands here.
You can either put a breakpoint using break
or temporary breakpoint using tbreak
in foo or bar:
JavaScript
1
9
1
$ python3 x.py
2
> /tmp/0/x.py(14)<module>()
3
-> x=foo(bar(baz(42)))
4
(Pdb) break foo
5
Breakpoint 1 at /tmp/0/x.py:1
6
(Pdb) continue
7
> /tmp/0/x.py(2)foo()
8
-> ret=x+1
9
or run until the baz
end using return
and then step
again:
JavaScript
1
24
24
1
$ python3 x.py
2
> /tmp/0/x.py(14)<module>()
3
-> x=foo(bar(baz(42)))
4
(Pdb) step
5
--Call--
6
> /tmp/0/x.py(9)baz()
7
-> def baz(x):
8
(Pdb) return
9
--Return--
10
> /tmp/0/x.py(11)baz()->45
11
-> return ret
12
(Pdb) step
13
--Call--
14
> /tmp/0/x.py(5)bar()
15
-> def bar(x):
16
(Pdb) return
17
--Return--
18
> /tmp/0/x.py(7)bar()->47
19
-> return ret
20
(Pdb) step
21
--Call--
22
> /tmp/0/x.py(1)foo()
23
-> def foo(x):
24