| D | selectors.py | 4 `select` module primitives. 12 import select 90 A selector can use various implementations (select(), poll(), epoll()...) 155 def select(self, timeout=None): member in BaseSelector 162 if timeout <= 0, the select() call won't block, and will 164 if timeout is None, select() will block until a monitored 291 """Select-based selector.""" 314 r, w, x = select.select(r, w, w, timeout) 317 _select = select.select 319 def select(self, timeout=None): member in SelectSelector [all …]
|