diff options
author | Raymond Hettinger <python@rcn.com> | 2010-11-04 03:02:56 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2010-11-04 03:02:56 (GMT) |
commit | fd15191b9287fc32563c05d460e1ceaa2e60bb0e (patch) | |
tree | f629609530f5bbb7876a8b2497fa52004bc134d9 /Doc/library/multiprocessing.rst | |
parent | f4477703a5049a479910daae063b8d08fefdb5e0 (diff) | |
download | cpython-fd15191b9287fc32563c05d460e1ceaa2e60bb0e.zip cpython-fd15191b9287fc32563c05d460e1ceaa2e60bb0e.tar.gz cpython-fd15191b9287fc32563c05d460e1ceaa2e60bb0e.tar.bz2 |
Demote one warning to a note. There's no security risk here, just a note on usage and avialability.
Diffstat (limited to 'Doc/library/multiprocessing.rst')
-rw-r--r-- | Doc/library/multiprocessing.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst index 8fec5a3..3908bcb 100644 --- a/Doc/library/multiprocessing.rst +++ b/Doc/library/multiprocessing.rst @@ -16,7 +16,7 @@ to this, the :mod:`multiprocessing` module allows the programmer to fully leverage multiple processors on a given machine. It runs on both Unix and Windows. -.. warning:: +.. note:: Some of this package's functionality requires a functioning shared semaphore implementation on the host operating system. Without one, the |