MCPcopy Index your code
hub / github.com/python/cpython / unbounditems

Method unbounditems

Lib/concurrent/interpreters/_queues.py:148–154  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

146
147 @property
148 def unbounditems(self):
149 try:
150 _, items = self._unbound
151 except AttributeError:
152 op, _ = _queues.get_queue_defaults(self._id)
153 _, items = self._set_unbound(op)
154 return items
155
156 @property
157 def maxsize(self):

Callers

nothing calls this directly

Calls 1

_set_unboundMethod · 0.95

Tested by

no test coverage detected