From 7aedea40d66a628236cba60f0d2712daf5e68198 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Tue, 28 Jan 2014 00:09:24 +0100 Subject: [PATCH] asyncio: remove temporary aliases --- Lib/asyncio/queues.py | 6 ------ 1 file changed, 6 deletions(-) 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.