I would handle this by setting a break at the line number inside func that you're interested in, and then use continue. For example suppose your code looks like this:
110 def func(a1, a2):
111 "" docstring ""
112 first interesting line
then do this:
python -m pdb caller.py
pdb> b 112
pdb> c