Python Hunter can be activated from command-line like below to trace execution of Python programs.
$ PYTHONHUNTER="module='os.path'" python yourapp.py
But how to specify more than one module for module
filter?
Python Hunter can be activated from command-line like below to trace execution of Python programs.
$ PYTHONHUNTER="module='os.path'" python yourapp.py
But how to specify more than one module for module
filter?
More than one module can be specified using module_in
filter
$ PYTHONHUNTER="module_in=['os.path','os.errno']" python yourapp.py