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

Method _set_unbound

Lib/concurrent/interpreters/_queues.py:135–141  ·  view source on GitHub ↗
(self, op, items=None)

Source from the content-addressed store, hash-verified

133 return (type(self), (self._id,))
134
135 def _set_unbound(self, op, items=None):
136 assert not hasattr(self, '_unbound')
137 if items is None:
138 items = _resolve_unbound(op)
139 unbound = (op, items)
140 self._unbound = unbound
141 return unbound
142
143 @property
144 def id(self):

Callers 3

unbounditemsMethod · 0.95
createFunction · 0.45
list_allFunction · 0.45

Calls 1

_resolve_unboundFunction · 0.70

Tested by

no test coverage detected