Return the approximate size of the queue.
(self)
| 28 | """Protocol for queue-like objects that support qsize().""" |
| 29 | |
| 30 | def qsize(self) -> int: |
| 31 | """Return the approximate size of the queue.""" |
| 32 | ... |
| 33 | |
| 34 | |
| 35 | class SupportsLockQuery(Protocol): |
no outgoing calls