Lines Matching defs:select
11 import select
2364 r, w, x = select.select([self.serv], [], [], 3.0)
2370 self.data = b'select'
4626 read, write, err = select.select([sd], [], [], 1.0)
4689 # sock.recv(), and other socket operations use a select() call and
4787 read, write, err = select.select([self.serv], [], [], support.LONG_TIMEOUT)
4789 self.fail("Error trying to do accept after select.")
4815 read, write, err = select.select([conn], [], [], support.LONG_TIMEOUT)
4817 self.fail("Error during select call to non-blocking socket.")
5901 # *non-blocking* mode, and 'sock.recv()' uses 'select()'