Return True if the queue is empty, False otherwise.
(self)
| 93 | return self._maxsize |
| 94 | |
| 95 | def empty(self): |
| 96 | """Return True if the queue is empty, False otherwise.""" |
| 97 | return not self._queue |
| 98 | |
| 99 | def full(self): |
| 100 | """Return True if there are maxsize items in the queue. |
no outgoing calls
no test coverage detected