문제

When profiling my application using cProfile and pstats, one of the rows reads:

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

What does this method do and when is it executed?

도움이 되었습니까?

해결책

select.select is an interface to the Unix select() system call.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top