diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2012-05-18 11:57:04 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2012-05-18 11:57:04 (GMT) |
commit | fc6acccbafc82aa91d69b0b86b2a3a36e4f93d23 (patch) | |
tree | 16841d1f67e6484cccf976fb2ea420cfe364aad6 /Doc/library/multiprocessing.rst | |
parent | 79341e7865db69ec4f056c7d274aec06bf58a16f (diff) | |
download | cpython-fc6acccbafc82aa91d69b0b86b2a3a36e4f93d23.zip cpython-fc6acccbafc82aa91d69b0b86b2a3a36e4f93d23.tar.gz cpython-fc6acccbafc82aa91d69b0b86b2a3a36e4f93d23.tar.bz2 |
Remove outdated statements about threading and imports.
Diffstat (limited to 'Doc/library/multiprocessing.rst')
-rw-r--r-- | Doc/library/multiprocessing.rst | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst index 320e492..722f00c 100644 --- a/Doc/library/multiprocessing.rst +++ b/Doc/library/multiprocessing.rst @@ -120,9 +120,7 @@ processes: print(q.get()) # prints "[42, None, 'hello']" p.join() - Queues are thread and process safe, but note that they must never - be instantiated as a side effect of importing a module: this can lead - to a deadlock! (see :ref:`threaded-imports`) + Queues are thread and process safe. **Pipes** |