From 907cda6ebb39d39c943b6e6dbcaba234519c7c96 Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Tue, 15 Jan 2008 05:46:43 +0000 Subject: [PATCH] Small grammar nit --- Doc/library/queue.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/library/queue.rst b/Doc/library/queue.rst index 629a4b33d3..8543c5a6a4 100644 --- a/Doc/library/queue.rst +++ b/Doc/library/queue.rst @@ -49,8 +49,8 @@ See the source code for details. The public methods are: .. method:: Queue.qsize() - Return the approximate size of the queue. qsize() > 0 doesn't guarantee - that a subsequent get() will not block, nor that qsize() < maxsize + Return the approximate size of the queue. Note, qsize() > 0 doesn't + guarantee that a subsequent get() will not block, nor will qsize() < maxsize guarantee that put() will not block. -- 2.50.1