{build-in-method select}在Python3中做什么?

{build-in-method select}在Python3中做什么?,python,profiling,built-in,cprofile,Python,Profiling,Built In,Cprofile,使用cProfile和pstats评测我的应用程序时,其中一行显示: ncalls tottime percall cumtime percall filename:lineno(function) 6 2.940 0.490 2.940 0.490 {built-in method select} 此方法做什么以及何时执行?是Unix系统调用的接口。?

使用
cProfile
pstats
评测我的应用程序时,其中一行显示:

ncalls  tottime  percall  cumtime  percall filename:lineno(function)
     6    2.940    0.490    2.940    0.490 {built-in method select}
此方法做什么以及何时执行?

是Unix系统调用的接口。