summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2013-12-18 14:43:57 -0800
committerGuido van Rossum <guido@python.org>2013-12-18 14:43:57 -0800
commit675f3638eaebb4363e47c7e3fb106491cd61f3ad (patch)
tree23b0da05fd0c1987d506562fe90e16f4ed01ccf9
parent111715faf090873025124e58d2037f8feb715b2b (diff)
downloadtrollius-675f3638eaebb4363e47c7e3fb106491cd61f3ad.tar.gz
Drop Tulip reference.
-rw-r--r--asyncio/queues.py2
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.
"""