Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/tornadoweb/tornado
/ _get
Method
_get
tornado/queues.py:309–310 ·
view source on GitHub ↗
(self)
Source
from the content-addressed store, hash-verified
307
self._queue = collections.deque()
308
309
def
_get(self) -> _T:
310
return
self._queue.popleft()
311
312
def
_put(self, item: _T) -> None:
313
self._queue.append(item)
Callers
2
put_nowait
Method · 0.95
get_nowait
Method · 0.95
Calls
no outgoing calls
Tested by
no test coverage detected