4

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?

Tregoreg
  • 18,872
  • 15
  • 48
  • 69
  • 2
    [`select.select`](http://docs.python.org/2/library/select.html#select.select)? – grc Sep 20 '13 at 07:59

1 Answers1

2

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

Kristaps Taube
  • 2,363
  • 1
  • 17
  • 17