Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Python Hunter可以像下面这样从命令行激活,以跟踪 Python 程序的执行。
$ PYTHONHUNTER="module='os.path'" python yourapp.py
module但是如何为过滤器指定多个模块呢?
module
module_in可以使用过滤器指定多个模块
module_in
$ PYTHONHUNTER="module_in=['os.path','os.errno']" python yourapp.py