diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2011-04-29 04:10:24 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2011-04-29 04:10:24 (GMT) |
commit | 2ee88355fc37a32ba5c4b4e5e2e25f52a1d86912 (patch) | |
tree | 8b2b5299011115474c27e17eafd972d5b51d67e9 /Doc | |
parent | e3bdcf4ffd51a9cf8c066d9f815c3bf650a94dbb (diff) | |
download | cpython-2ee88355fc37a32ba5c4b4e5e2e25f52a1d86912.zip cpython-2ee88355fc37a32ba5c4b4e5e2e25f52a1d86912.tar.gz cpython-2ee88355fc37a32ba5c4b4e5e2e25f52a1d86912.tar.bz2 |
#11952: Fix typo in multiprocessing doc.
Diffstat (limited to 'Doc')
-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 24f7185..cb20a5c 100644 --- a/Doc/library/multiprocessing.rst +++ b/Doc/library/multiprocessing.rst @@ -26,7 +26,7 @@ Windows. .. note:: - Functionality within this package requires that the ``__main__`` method be + Functionality within this package requires that the ``__main__`` module be importable by the children. This is covered in :ref:`multiprocessing-programming` however it is worth pointing out here. This means that some examples, such as the :class:`multiprocessing.Pool` examples will not work in the |