标签: python profiling built-in cprofile
使用cProfile和pstats分析我的应用时,其中一行显示为:
cProfile
pstats
ncalls tottime percall cumtime percall filename:lineno(function) 6 2.940 0.490 2.940 0.490 {built-in method select}
这种方法做什么以及何时执行?
答案 0 :(得分:1)
select.select是Unix select()系统调用的接口。