diff --git a/Lib/asyncio/queues.py b/Lib/asyncio/queues.py index bd62c606c01..6283db3268f 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.