MCPcopy Index your code
hub / github.com/RustPython/RustPython / _set_unbound

Method _set_unbound

Lib/test/support/channels.py:197–203  ·  view source on GitHub ↗
(self, op, items=None)

Source from the content-addressed store, hash-verified

195# return self
196
197 def _set_unbound(self, op, items=None):
198 assert not hasattr(self, '_unbound')
199 if items is None:
200 items = _resolve_unbound(op)
201 unbound = (op, items)
202 self._unbound = unbound
203 return unbound
204
205 @property
206 def unbounditems(self):

Callers 3

unbounditemsMethod · 0.95
createFunction · 0.80
list_allFunction · 0.80

Calls 2

hasattrFunction · 0.85
_resolve_unboundFunction · 0.85

Tested by

no test coverage detected