This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: typo in multiprocessing documentation: __main__ method should be replaced by __main__ module
Type: behavior Stage: resolved
Components: Documentation Versions: Python 3.1, Python 3.2, Python 3.3, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: ezio.melotti Nosy List: akira, docs@python, ezio.melotti, python-dev
Priority: normal Keywords:

Created on 2011-04-28 22:27 by akira, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (3)
msg134724 - (view) Author: Akira Li (akira) * Date: 2011-04-28 22:27
s/method/module/:

    Functionality within this package requires that the ``__main__`` method be
    importable by the children.
msg134738 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2011-04-29 04:13
New changeset ef9bccfe64de by Ezio Melotti in branch '2.7':
#11952: Fix typo in multiprocessing doc.
http://hg.python.org/cpython/rev/ef9bccfe64de

New changeset 1d3c5df88589 by Ezio Melotti in branch '3.1':
#11952: Fix typo in multiprocessing doc.
http://hg.python.org/cpython/rev/1d3c5df88589

New changeset 56c187b81d2b by Ezio Melotti in branch '3.2':
#11952: merge with 3.1.
http://hg.python.org/cpython/rev/56c187b81d2b

New changeset 8eb794bbb967 by Ezio Melotti in branch 'default':
#11952: merge with 3.2.
http://hg.python.org/cpython/rev/8eb794bbb967
msg134739 - (view) Author: Ezio Melotti (ezio.melotti) * (Python committer) Date: 2011-04-29 04:14
Fixed, thanks for the report!
History
Date User Action Args
2022-04-11 14:57:16adminsetgithub: 56161
2011-04-29 04:14:35ezio.melottisetstatus: open -> closed

assignee: docs@python -> ezio.melotti
versions: - Python 3.4
nosy: + ezio.melotti

messages: + msg134739
resolution: fixed
stage: resolved
2011-04-29 04:13:23python-devsetnosy: + python-dev
messages: + msg134738
2011-04-28 22:27:46akiracreate