I've got python script (ala #! /usr/bin/python) and I want to debug it with pdb. How can I pass arguments to the script?

link|improve this question
feedback

1 Answer

python -m pdb myscript.py arg1 arg2 ...

This invokes pdb as a script to debug another script. You can pass command-line arguments after the script name. See the pdb doc page for more details.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown