[Python-checkins] r59971 - python/trunk/Doc/library/queue.rst

raymond.hettinger python-checkins at python.org
Tue Jan 15 06:46:43 CET 2008


Author: raymond.hettinger
Date: Tue Jan 15 06:46:43 2008
New Revision: 59971

Modified:
   python/trunk/Doc/library/queue.rst
Log:
Small grammar nit

Modified: python/trunk/Doc/library/queue.rst
==============================================================================
--- python/trunk/Doc/library/queue.rst	(original)
+++ python/trunk/Doc/library/queue.rst	Tue Jan 15 06:46:43 2008
@@ -49,8 +49,8 @@
 
 .. 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.
 
 


More information about the Python-checkins mailing list