Python 异常后,启动启动debug调试

这里需要修改python在异常发生后的处理流程

sys.excepthook 是python系统的异常处理器,重写一个自定义处理器,并在打印异常信息后,启动pdb。

import sys
def info(type, value, tb):
    # 异常类型
    # 异常值
    # 调用栈
    if hasattr(sys, 'ps1') or not sys.stderr.isatty():
        # we are in interactive mode or we don't have a tty-like
        # device, so we call the default hook
        sys.__excepthook__(type, value, tb)
    else:
        import traceback, pdb
        # we are NOT in interactive mode, print the exception...
        traceback.print_exception(type, value, tb)
        print
        # ...then start the debugger in post-mortem mode.
        pdb.post_mortem(tb)
sys.excepthook = info

关注微信公众号号:
挖金矿工:goldminer1024
为您的量化投资理想插上翅膀


Python 异常后,启动启动debug调试_第1张图片
goldminer1024

你可能感兴趣的:(Python 异常后,启动启动debug调试)