]> granicus.if.org Git - python/commitdiff
asyncio: remove temporary aliases
authorVictor Stinner <victor.stinner@gmail.com>
Mon, 27 Jan 2014 23:09:24 +0000 (00:09 +0100)
committerVictor Stinner <victor.stinner@gmail.com>
Mon, 27 Jan 2014 23:09:24 +0000 (00:09 +0100)
Lib/asyncio/queues.py

index bd62c606c01080ed6eaa496a3138532e9caf3842..6283db3268f93ea9da2afcd7ac7be488cf93e5b5 100644 (file)
@@ -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.