Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/python/cpython
/ queue_full
Function
queue_full
Lib/test/_test_multiprocessing.py:1180–1184 ·
view source on GitHub ↗
(q, maxsize)
Source
from the content-addressed store, hash-verified
1178
return
q.qsize() == 0
1179
1180
def
queue_full(q, maxsize):
1181
if
hasattr(q,
'full'
):
1182
return
q.full()
1183
else
:
1184
return
q.qsize() == maxsize
1185
1186
1187
class
_TestQueue(BaseTestCase):
Callers
1
test_put
Method · 0.85
Calls
2
full
Method · 0.45
qsize
Method · 0.45
Tested by
no test coverage detected
Used in the wild
real call sites across dependent graphs
searching dependent graphs…