'Step into command

I'm debugging a script and would like to step into a certain command.

self.definedKey="1234"
import ipdb;ipdb.set_trace()
self.executeWithKey(exekey="9876")

Is it possible to step into method self.executeWithKey() while I'm in the debugging mode? I tried already:

s self.executeWithKey()

which would just execute it - but without stepping in.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source