diff options
author | Guido van Rossum <guido@python.org> | 2013-12-18 14:43:57 -0800 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2013-12-18 14:43:57 -0800 |
commit | 675f3638eaebb4363e47c7e3fb106491cd61f3ad (patch) | |
tree | 23b0da05fd0c1987d506562fe90e16f4ed01ccf9 | |
parent | 111715faf090873025124e58d2037f8feb715b2b (diff) | |
download | trollius-675f3638eaebb4363e47c7e3fb106491cd61f3ad.tar.gz |
Drop Tulip reference.
-rw-r--r-- | asyncio/queues.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/asyncio/queues.py b/asyncio/queues.py index 3f5bf44..e900278 100644 --- a/asyncio/queues.py +++ b/asyncio/queues.py @@ -26,7 +26,7 @@ class Queue: queue reaches maxsize, until an item is removed by get(). Unlike the standard library Queue, you can reliably know this Queue's size - with qsize(), since your single-threaded Tulip application won't be + with qsize(), since your single-threaded asyncio application won't be interrupted between calling qsize() and doing an operation on the Queue. """ |