(self)
| 200 | |
| 201 | @property |
| 202 | def unbounditems(self): |
| 203 | try: |
| 204 | _, items = self._unbound |
| 205 | except AttributeError: |
| 206 | op, _ = _channels.get_queue_defaults(self._id) |
| 207 | _, items = self._set_unbound(op) |
| 208 | return items |
| 209 | |
| 210 | @property |
| 211 | def is_closed(self): |
nothing calls this directly
no test coverage detected