{内置方法select}在Python 3中做了什么?

时间:2013-09-20 07:53:04

标签: python profiling built-in cprofile

使用cProfilepstats分析我的应用时,其中一行显示为:

ncalls  tottime  percall  cumtime  percall filename:lineno(function)
     6    2.940    0.490    2.940    0.490 {built-in method select}

这种方法做什么以及何时执行?

1 个答案:

答案 0 :(得分:1)

select.select是Unix select()系统调用的接口。