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 ncoghlan
Recipients ColinPDavidson, James.Burke, brett.cannon, christian.heimes, eric.snow, inlinestyle, ncoghlan, nmz787, pitrou, sbt
Date 2014-11-27.01:36:16
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1417052177.68.0.033520295524.issue21614@psf.upfronthosting.co.za>
In-reply-to
Content
(Adding Richard as the multiprocessing maintainer, and Christian as the creator of the backport to 2.4/2.5)

Note that on a case-insensitive filesystem, the fopen() call is likely succeeding, and it's the subsequent case_ok() check that's failing. The assumption of case sensitivity is embedded fairly deeply in the import system, as otherwise it makes it pretty easy to accidentally import the same module multiple times under different names.

However, if importing the same module multiple times under different names isn't a concern, then setting PYTHONCASEOK should allow multiprocessing to import the module using the incorrect capitalisation.

More significant changes to the way the standard library's multiprocessing module starts subprocesses on Windows won't be implemented for Python 2.7 - actually fixing the subprocess spawning to work as intended in all cases (as was done in Python 3.4) relies on the import system changes defined in PEP 451. 

In theory, I expect a multiprocessing2 backport could be written that depends on importib2 (to enable Python 3.4+ import semantics in Python 2.7), but I'm not aware of anyone currently working on such a project.

James's comment sounds like a potentially different problem (e.g. there are some hardcoded platform dependent limits on absolute path lengths for module filenames - 255 in the case of Windows)
History
Date User Action Args
2014-11-27 01:36:17ncoghlansetrecipients: + ncoghlan, brett.cannon, pitrou, christian.heimes, sbt, eric.snow, ColinPDavidson, nmz787, inlinestyle, James.Burke
2014-11-27 01:36:17ncoghlansetmessageid: <1417052177.68.0.033520295524.issue21614@psf.upfronthosting.co.za>
2014-11-27 01:36:17ncoghlanlinkissue21614 messages
2014-11-27 01:36:16ncoghlancreate