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.

Author loewis
Recipients benjamin.peterson, brett.cannon, eric.araujo, jnoller, loewis, ot
Date 2010-07-03.08:37:14
SpamBayes Score 1.3651836e-05
Marked as misclassified No
Message-id <1278146237.01.0.844643068548.issue9144@psf.upfronthosting.co.za>
In-reply-to
Content
Here is the problem: there is no module multiprocessing._multiprocessing; _multiprocessing is a global module. However, multiprocessing/__init__.py imports _multiprocessing, providing multiprocessing._multiprocessing as a valid attribute. sys.modules['multiprocessing._multiprocessing'] is None.

Now, on Windows, for some reason,

from ._multiprocessing import win32

is used. In 2.6, this used to work. In 2.7, due to r81380, it stopped working (i.e. if I revert r81380, it works again). Adding Brett to the nosy list, as he made this change.
History
Date User Action Args
2010-07-03 08:37:17loewissetrecipients: + loewis, brett.cannon, benjamin.peterson, jnoller, eric.araujo, ot
2010-07-03 08:37:17loewissetmessageid: <1278146237.01.0.844643068548.issue9144@psf.upfronthosting.co.za>
2010-07-03 08:37:14loewislinkissue9144 messages
2010-07-03 08:37:14loewiscreate