From: Victor Stinner Date: Mon, 27 Jan 2014 23:09:24 +0000 (+0100) Subject: asyncio: remove temporary aliases X-Git-Tag: v3.4.0rc1~214 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7aedea40d66a628236cba60f0d2712daf5e68198;p=python asyncio: remove temporary aliases --- 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.