summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 bd62c60..6283db3 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.