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