Return True if the queue is empty, False otherwise.
(self)
| 108 | return self._maxsize |
| 109 | |
| 110 | def empty(self): |
| 111 | """Return True if the queue is empty, False otherwise.""" |
| 112 | return not self._queue |
| 113 | |
| 114 | def full(self): |
| 115 | """Return True if there are maxsize items in the queue. |
no outgoing calls