(self, op, items=None)
| 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): |
no test coverage detected