summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2008-09-30 12:31:07 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2008-09-30 12:31:07 (GMT)
commit83b3910e61f07736f9147e0d87e011e0d34ed328 (patch)
tree93f33d09b7d49639a6df2515c9445ce1749b85a2 /Doc
parent02252480336fbbf8507d51ccc88431fa59ecd07f (diff)
downloadcpython-83b3910e61f07736f9147e0d87e011e0d34ed328.zip
cpython-83b3910e61f07736f9147e0d87e011e0d34ed328.tar.gz
cpython-83b3910e61f07736f9147e0d87e011e0d34ed328.tar.bz2
Edits, and add markup
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/multiprocessing.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst
index a005dc4..c5901fa 100644
--- a/Doc/library/multiprocessing.rst
+++ b/Doc/library/multiprocessing.rst
@@ -20,11 +20,11 @@ Windows.
.. warning::
- This package largely requires a functioning shared semaphore
- implementation on the host operating system to function. Without one, the
+ Some of this package's functionality requires a functioning shared semaphore
+ implementation on the host operating system. Without one, the
:mod:`multiprocessing.synchronize` module will be disabled, and attempts to
- import it will result in an ImportError. See
- http://bugs.python.org/issue3770 for additional information.
+ import it will result in an :exc:`ImportError`. See
+ :issue:`3770` for additional information.
The :class:`Process` class
~~~~~~~~~~~~~~~~~~~~~~~~~~