def timer():
""" A simple timing function for routines """
try:
start = timer_func()
yield
except Exception as e:
print(e)
raise
finally:
end = timer_func()
print ('Time spent=>',1000.0*(end - start),'ms.')
common_items.py 文件源码
python
阅读 33
收藏 0
点赞 0
评论 0
评论列表
文章目录