diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-05-16 06:31:54 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-05-16 06:31:54 (GMT) |
commit | 4ecfa455ae47bd955857348238c8bf8476819a1e (patch) | |
tree | 9b95caf33bcc54b96eaeb875a7c8cfd7db5c2809 /Doc/library/multiprocessing.rst | |
parent | 98019e1cf6dec54ca6c56ceb150869c1430bfda3 (diff) | |
download | cpython-4ecfa455ae47bd955857348238c8bf8476819a1e.zip cpython-4ecfa455ae47bd955857348238c8bf8476819a1e.tar.gz cpython-4ecfa455ae47bd955857348238c8bf8476819a1e.tar.bz2 |
Expand abbreviations FIFO and LIFO.
Diffstat (limited to 'Doc/library/multiprocessing.rst')
-rw-r--r-- | Doc/library/multiprocessing.rst | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst index 1b1d386..b2b02b0 100644 --- a/Doc/library/multiprocessing.rst +++ b/Doc/library/multiprocessing.rst @@ -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. |