how to load a module within python debugger
- by MK
This looks like something simple but I could not find the answer so far -
I have just learnt python and need to start learning pdb. In my module I have the usual if __name__ == __main_ trick to execute some code when the module is run as a program.
So far I have been running it via python -m mymod arg1 arg2 syntax
Now I want to do exactly the same thing from inside pdb. Normally in C, I would just do gdb mybinary followed by run arg1 arg2
But I cannot figure out how to achieve the same thing in pdb.
I am sure there has to be a simple way to achieve this but it is taking me too long to search for it..
Thanks for your help!