[Python-checkins] cpython (3.3): Clarify note and fix typo.

richard.oudkerk python-checkins at python.org
Mon Jun 24 19:15:01 CEST 2013


http://hg.python.org/cpython/rev/347647a1f798
changeset:   84314:347647a1f798
branch:      3.3
parent:      84311:3a5e2f1dce5c
user:        Richard Oudkerk <shibturn at gmail.com>
date:        Mon Jun 24 18:12:57 2013 +0100
summary:
  Clarify note and fix typo.

files:
  Doc/library/multiprocessing.rst |  5 +++--
  1 files changed, 3 insertions(+), 2 deletions(-)


diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst
--- a/Doc/library/multiprocessing.rst
+++ b/Doc/library/multiprocessing.rst
@@ -520,8 +520,9 @@
    When an object is put on a queue, the object is pickled and a
    background thread later flushes the pickled data to an underlying
    pipe.  This has some consequences which are a little surprising,
-   but should not cause any pratical difficulties -- you can always
-   use a managed queue if they really bother you.
+   but should not cause any practical difficulties -- if they really
+   bother you then you can instead use a queue created with a
+   :ref:`manager <multiprocessing-managers>`.
 
    (1) After putting an object on an empty queue there may be an
        infinitessimal delay before the queue's :meth:`~Queue.empty`

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list