summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/queue.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sqlalchemy/queue.py')
-rw-r--r--lib/sqlalchemy/queue.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/sqlalchemy/queue.py b/lib/sqlalchemy/queue.py
index 2aaeea9d0..74435ea38 100644
--- a/lib/sqlalchemy/queue.py
+++ b/lib/sqlalchemy/queue.py
@@ -52,7 +52,8 @@ class Queue:
return n
def empty(self):
- """Return True if the queue is empty, False otherwise (not reliable!)."""
+ """Return True if the queue is empty, False otherwise (not
+ reliable!)."""
self.mutex.acquire()
n = self._empty()
@@ -60,7 +61,8 @@ class Queue:
return n
def full(self):
- """Return True if the queue is full, False otherwise (not reliable!)."""
+ """Return True if the queue is full, False otherwise (not
+ reliable!)."""
self.mutex.acquire()
n = self._full()