Method
qsize
Number of items in the queue.
(self)
Source from the content-addressed store, hash-verified
| 84 | return result |
| 85 | |
| 86 | def qsize(self): |
| 87 | """Number of items in the queue.""" |
| 88 | return len(self._queue) |
| 89 | |
| 90 | @property |
| 91 | def maxsize(self): |
Tested by
no test coverage detected