I have the following python call:
python -m module_name
The file structure is as below:
module_name
__init__.py
__main__.py
Previously, I debug using pudb for signle python program without -m
in the following way:
python -m pudb.run file_name.py
Considering this, I tried the following command but got error:
python -m pudb.run -m module_name
Error messages:
Usage: run.py [options] SCRIPT-TO-RUN [SCRIPT-ARGUMENTS]
run.py: error: no such option: -m
Is there any solution for debug 'python -m module_name' using pudb?