http://hg.python.org/cpython/rev/a0ecf4155087 changeset: 88784:a0ecf4155087 user: Victor Stinner <victor.stinner at gmail.com> date: Tue Jan 28 00:09:24 2014 +0100 summary: asyncio: remove temporary aliases files: Lib/asyncio/queues.py | 6 ------ 1 files changed, 0 insertions(+), 6 deletions(-) diff --git a/Lib/asyncio/queues.py b/Lib/asyncio/queues.py --- a/Lib/asyncio/queues.py +++ b/Lib/asyncio/queues.py @@ -22,12 +22,6 @@ 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. -- Repository URL: http://hg.python.org/cpython