(self, op, items=None)
| 191 | # return self |
| 192 | |
| 193 | def _set_unbound(self, op, items=None): |
| 194 | assert not hasattr(self, '_unbound') |
| 195 | if items is None: |
| 196 | items = _resolve_unbound(op) |
| 197 | unbound = (op, items) |
| 198 | self._unbound = unbound |
| 199 | return unbound |
| 200 | |
| 201 | @property |
| 202 | def unbounditems(self): |
no test coverage detected