diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2011-04-29 07:10:24 +0300 |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2011-04-29 07:10:24 +0300 |
commit | 46767928e3e3fffd431ec0760ef32d055ad88f26 (patch) | |
tree | 9527b94562c32499220e98a4dbcc745f30ac6a30 | |
parent | 1ddc72a8ba6a75da2f4fed0f9a06ed168e4e6290 (diff) | |
download | cpython-46767928e3e3fffd431ec0760ef32d055ad88f26.tar.gz |
#11952: Fix typo in multiprocessing 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 24f7185aa1..cb20a5c75c 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 |