We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7bd482 commit 89f0079Copy full SHA for 89f0079
v3/primitives/queue.py
@@ -69,4 +69,4 @@ def empty(self): # Return True if the queue is empty, False otherwise.
69
def full(self): # Return True if there are maxsize items in the queue.
70
# Note: if the Queue was initialized with maxsize=0 (the default) or
71
# any negative number, then full() is never True.
72
- return self.maxsize > 0 and self.qsize() >= self.maxsize
+ return self.maxsize > 0 and self.qsize() >= self.maxsize
0 commit comments