mirror of https://github.com/python/cpython
Merged revisions 78463 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r78463 | andrew.kuchling | 2010-02-26 08:22:50 -0500 (Fri, 26 Feb 2010) | 1 line #7407: specify default maxsize value; patch by Floris Bruynooghe ........
This commit is contained in:
parent
c1c415f304
commit
2b600e5496
|
@ -21,15 +21,14 @@ lowest valued entry is retrieved first.
|
||||||
|
|
||||||
The :mod:`queue` module defines the following classes and exceptions:
|
The :mod:`queue` module defines the following classes and exceptions:
|
||||||
|
|
||||||
.. class:: Queue(maxsize)
|
.. class:: Queue(maxsize=0)
|
||||||
|
|
||||||
Constructor for a FIFO queue. *maxsize* is an integer that sets the upperbound
|
Constructor for a FIFO queue. *maxsize* is an integer that sets the upperbound
|
||||||
limit on the number of items that can be placed in the queue. Insertion will
|
limit on the number of items that can be placed in the queue. Insertion will
|
||||||
block once this size has been reached, until queue items are consumed. If
|
block once this size has been reached, until queue items are consumed. If
|
||||||
*maxsize* is less than or equal to zero, the queue size is infinite.
|
*maxsize* is less than or equal to zero, the queue size is infinite.
|
||||||
|
|
||||||
|
.. class:: LifoQueue(maxsize=0)
|
||||||
.. class:: LifoQueue(maxsize)
|
|
||||||
|
|
||||||
Constructor for a LIFO queue. *maxsize* is an integer that sets the upperbound
|
Constructor for a LIFO queue. *maxsize* is an integer that sets the upperbound
|
||||||
limit on the number of items that can be placed in the queue. Insertion will
|
limit on the number of items that can be placed in the queue. Insertion will
|
||||||
|
@ -37,7 +36,7 @@ The :mod:`queue` module defines the following classes and exceptions:
|
||||||
*maxsize* is less than or equal to zero, the queue size is infinite.
|
*maxsize* is less than or equal to zero, the queue size is infinite.
|
||||||
|
|
||||||
|
|
||||||
.. class:: PriorityQueue(maxsize)
|
.. class:: PriorityQueue(maxsize=0)
|
||||||
|
|
||||||
Constructor for a priority queue. *maxsize* is an integer that sets the upperbound
|
Constructor for a priority queue. *maxsize* is an integer that sets the upperbound
|
||||||
limit on the number of items that can be placed in the queue. Insertion will
|
limit on the number of items that can be placed in the queue. Insertion will
|
||||||
|
|
Loading…
Reference in New Issue