summaryrefslogtreecommitdiff
path: root/Lib/asyncio/queues.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/asyncio/queues.py')
-rw-r--r--Lib/asyncio/queues.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/Lib/asyncio/queues.py b/Lib/asyncio/queues.py
index bd62c606c0..6283db3268 100644
--- a/Lib/asyncio/queues.py
+++ b/Lib/asyncio/queues.py
@@ -22,12 +22,6 @@ class QueueFull(Exception):
pass
-# Un-exported aliases for temporary backward compatibility.
-# Will disappear soon.
-Full = QueueFull
-Empty = QueueEmpty
-
-
class Queue:
"""A queue, useful for coordinating producer and consumer coroutines.