当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python timeit.Timer.print_exc用法及代码示例


用法:

print_exc(file=None)

从定时代码打印回溯的助手。

典型用途:

t = Timer(...)       # outside the try/except
try:
    t.timeit(...)    # or t.repeat(...)
except Exception:
    t.print_exc()

与标准回溯相比的优势在于,将显示编译模板中的源代码行。可选的file 参数指示发送回溯的位置;它默认为 sys.stderr

相关用法


注:本文由纯净天空筛选整理自python.org大神的英文原创作品 timeit.Timer.print_exc。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。