标签:python cprofile profile pstats
###################
*直接在脚本内部使用:
import cProfile
import re
cProfile.run(‘re.compile("foo|bar")‘, ‘restats‘)
*一个比较典型的输出结果:
197 function calls (192 primitive calls) in 0.002 seconds输出结果说明:
共有197次函数调用,原始调用为192次,原始调用说明不包含递归调用。标签:python cprofile profile pstats
原文地址:http://blog.csdn.net/zyz511919766/article/details/41944015