Home | History | Annotate | Download | only in python2.7

Lines Matching defs:select

20 It is possible to pass a Telnet object to select.select() in order to
40 import select
209 self._has_poll = hasattr(select, 'poll')
300 This method uses select.poll() to implement the timeout.
310 poller = select.poll()
311 poll_in_or_priority_flags = select.POLLIN | select.POLLPRI
316 except select.error as e:
345 The timeout is implemented using select.select().
361 while not self.eof and select.select(*s_args) == s_reply:
580 return select.select([self], [], [], 0) == ([self], [], [])
588 rfd, wfd, xfd = select.select([self, sys.stdin], [], [])
657 This method uses select.poll() to implement the timeout.
680 poller = select.poll()
681 poll_in_or_priority_flags = select.POLLIN | select.POLLPRI
686 except select.error as e:
720 The timeout is implemented using select.select().
748 r, w, x = select.select(*s_args)