#pstats

linux命令:pppstats

 pppstats(point to point protocol status) 功能说明:显示PPP连线状态。语  法:pppstats [-adrv][-c<执行次数>][-w<间隔秒数>][网络界面]补充说明:利用pp...
开发笔记 ·2023-03-16

python pstats ,profile 性能分析

#!/usr/bin/envpython#encoding=utf8importpstatsimportprofiledeffunc1():foriinrange(1000):passdeffunc2():foriinrange(1000):func1()p=profile.Profile()p.run("func2(...