(self)
| 146 | |
| 147 | @property |
| 148 | def unbounditems(self): |
| 149 | try: |
| 150 | _, items = self._unbound |
| 151 | except AttributeError: |
| 152 | op, _ = _queues.get_queue_defaults(self._id) |
| 153 | _, items = self._set_unbound(op) |
| 154 | return items |
| 155 | |
| 156 | @property |
| 157 | def maxsize(self): |
nothing calls this directly
no test coverage detected