Return the approximate size of the queue (not reliable!).
(self)
| 107 | self.use_lifo = use_lifo |
| 108 | |
| 109 | def qsize(self) -> int: |
| 110 | """Return the approximate size of the queue (not reliable!).""" |
| 111 | |
| 112 | with self.mutex: |
| 113 | return self._qsize() |
| 114 | |
| 115 | def empty(self) -> bool: |
| 116 | """Return True if the queue is empty, False otherwise (not |
no test coverage detected