I import a custom made python library
I would like to set a gdb breakpoint in the module source file Plot.py
The python executable is wrapped by a shell executable shexec.sh
I proceed as follows:
The breakpoint is entirely ignored.
What is wrong?
1 |
from Jets.Analysis.Plot import * |
The python executable is wrapped by a shell executable shexec.sh
I proceed as follows:
gdb
file sh
break path_to_module/Plot.py:299
run shexec.sh arg1 arg2
The breakpoint is entirely ignored.
What is wrong?