用法:
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 timeit()用法及代码示例
- Python time.tzname()用法及代码示例
- Python time.monotonic()用法及代码示例
- Python time.tzset()用法及代码示例
- Python time.asctime()用法及代码示例
- Python time.clock()用法及代码示例
- Python time ctime()用法及代码示例
- Python time.daylight()用法及代码示例
- Python time.perf_counter()用法及代码示例
- Python time mktime()用法及代码示例
- Python time.get_clock_info()用法及代码示例
- Python time localtime()用法及代码示例
- Python time sleep()用法及代码示例
- Python time.strptime用法及代码示例
- Python time.gmtime()用法及代码示例
- Python time.strftime用法及代码示例
- Python time.time()用法及代码示例
- Python time.mktime()用法及代码示例
- Python time.sleep()用法及代码示例
- Python time.thread_time()用法及代码示例
注:本文由纯净天空筛选整理自python.org大神的英文原创作品 timeit.Timer.print_exc。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。