Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Doc/library/multiprocessing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -921,6 +921,10 @@ For an example of the usage of queues for interprocess communication see

.. class:: Queue([maxsize])

.. note::
Unlike :class:`queue.Queue`, :class:`multiprocessing.Queue` does not
implement the :meth:`~queue.Queue.shutdown` method.

Returns a process shared queue implemented using a pipe and a few
locks/semaphores. When a process first puts an item on the queue a feeder
thread is started which transfers objects from a buffer into the pipe.
Expand Down
Loading