mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Expand abbreviations FIFO and LIFO.
This commit is contained in:
parent
98019e1cf6
commit
4ecfa455ae
6 changed files with 21 additions and 14 deletions
|
@ -644,8 +644,9 @@ primitives like locks.
|
|||
For passing messages one can use :func:`Pipe` (for a connection between two
|
||||
processes) or a queue (which allows multiple producers and consumers).
|
||||
|
||||
The :class:`Queue`, :class:`SimpleQueue` and :class:`JoinableQueue` types are multi-producer,
|
||||
multi-consumer FIFO queues modelled on the :class:`queue.Queue` class in the
|
||||
The :class:`Queue`, :class:`SimpleQueue` and :class:`JoinableQueue` types
|
||||
are multi-producer, multi-consumer :abbr:`FIFO (first-in, first-out)`
|
||||
queues modelled on the :class:`queue.Queue` class in the
|
||||
standard library. They differ in that :class:`Queue` lacks the
|
||||
:meth:`~queue.Queue.task_done` and :meth:`~queue.Queue.join` methods introduced
|
||||
into Python 2.5's :class:`queue.Queue` class.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue