0

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?

Sivachandran
  • 787
  • 7
  • 21

1 Answers1

0

More than one module can be specified using module_in filter

$ PYTHONHUNTER="module_in=['os.path','os.errno']" python yourapp.py
Sivachandran
  • 787
  • 7
  • 21