Hi everybody, I'm currently porting code to use asyncio. I realized that queue.Queue and asyncio.Queue are very similar, which helps porting a lot, just one little detail: the exceptions raised by queue.Queue are called Empty and Full, while in asyncio the are called QueueEmpty and QueueFull. Personally, I don't have a preference for either, but I think it would be cool if they were called the same, or actually even be the same.
Greetings Martin
