]> granicus.if.org Git - python/commitdiff
Small grammar nit
authorRaymond Hettinger <python@rcn.com>
Tue, 15 Jan 2008 05:46:43 +0000 (05:46 +0000)
committerRaymond Hettinger <python@rcn.com>
Tue, 15 Jan 2008 05:46:43 +0000 (05:46 +0000)
Doc/library/queue.rst

index 629a4b33d30e3ecd2504a05dddf60ebb4fcfb204..8543c5a6a47dd8a456eb2396dd833cd0bacc386a 100644 (file)
@@ -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.