how to load a module within python debugger

Posted by MK on Stack Overflow See other posts from Stack Overflow or by MK
Published on 2010-05-18T14:19:52Z Indexed on 2010/05/18 14:30 UTC
Read the original article Hit count: 200

Filed under:
|

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!

© Stack Overflow or respective owner

Related posts about python

Related posts about debugging