diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2014-01-27 23:09:24 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2014-01-27 23:09:24 (GMT) |
commit | 7aedea40d66a628236cba60f0d2712daf5e68198 (patch) | |
tree | b4fa4392ee74cbd07f94f9e974bebfee0895d974 /Lib | |
parent | da5fe4f2dacb1d942a2b1046a5652452414721e8 (diff) | |
download | cpython-7aedea40d66a628236cba60f0d2712daf5e68198.zip cpython-7aedea40d66a628236cba60f0d2712daf5e68198.tar.gz cpython-7aedea40d66a628236cba60f0d2712daf5e68198.tar.bz2 |
asyncio: remove temporary aliases
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/asyncio/queues.py | 6 |
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. |