Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/RustPython/RustPython
/ _select
Method
_select
Lib/selectors.py:304–306 ·
view source on GitHub ↗
(self, r, w, _, timeout=None)
Source
from the content-addressed store, hash-verified
302
303
if
sys.platform ==
'win32'
:
304
def
_select(self, r, w, _, timeout=None):
305
r, w, x = select.select(r, w, w, timeout)
306
return
r, w + x, []
307
else
:
308
_select = select.select
309
Callers
1
select
Method · 0.95
Calls
1
select
Method · 0.45
Tested by
no test coverage detected