Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/python/cpython
/ get_nowait
Method
get_nowait
Lib/multiprocessing/queues.py:132–133 ·
view source on GitHub ↗
(self)
Source
from the content-addressed store, hash-verified
130
return
self._sem._semlock._is_zero()
131
132
def
get_nowait(self):
133
return
self.get(False)
134
135
def
put_nowait(self, obj):
136
return
self.put(obj, False)
Callers
nothing calls this directly
Calls
1
get
Method · 0.95
Tested by
no test coverage detected