[issue21614] Case sensitivity problem in multiprocessing.

2020-04-25 Thread Zachary Ware
Zachary Ware added the comment: With no activity here in over 5 years and no confirmation on any version but 2.7, I'm closing the issue. If it can be confirmed on 3.8, the issue can be reopened. -- nosy: +zach.ware resolution: -> out of date stage: -> resolved status: open -> clos

[issue21614] Case sensitivity problem in multiprocessing.

2020-03-18 Thread Brett Cannon
Change by Brett Cannon : -- nosy: -brett.cannon ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue21614] Case sensitivity problem in multiprocessing.

2014-11-26 Thread Nick Coghlan
Changes by Nick Coghlan : -- type: crash -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue21614] Case sensitivity problem in multiprocessing.

2014-11-26 Thread Nick Coghlan
Nick Coghlan added the comment: (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

[issue21614] Case sensitivity problem in multiprocessing.

2014-11-26 Thread James Burke
James Burke added the comment: I'm also getting this error. It appears to me to be caused by the length of the module name rather than case. mp_bug.py will run fine for me, but if I change it to mp_bug_longname.py then I will get this error. import multiprocessing import time class MP_Bug(mul

[issue21614] Case sensitivity problem in multiprocessing.

2014-11-15 Thread Ben Yelsey
Ben Yelsey added the comment: Hi, could you please list more exact steps to reproduce, e.g. directory/file layout and import statements? -- nosy: +inlinestyle ___ Python tracker ___

[issue21614] Case sensitivity problem in multiprocessing.

2014-10-01 Thread Antoine Pitrou
Antoine Pitrou added the comment: Can you try with Python 3.x? The import machinery is different there. -- nosy: +ncoghlan, pitrou ___ Python tracker ___

[issue21614] Case sensitivity problem in multiprocessing.

2014-10-01 Thread Nathan McCorkle
Nathan McCorkle added the comment: I've just got done experiencing this bug. It would be much more helpful if the error message was a bit more helpful (I had no idea where to start looking with the "ImportError: No module named [moduleStartingMultiprocess]" exception message) -- nosy:

[issue21614] Case sensitivity problem in multiprocessing.

2014-06-04 Thread R. David Murray
Changes by R. David Murray : -- nosy: +brett.cannon, eric.snow ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue21614] Case sensitivity problem in multiprocessing.

2014-05-30 Thread Colin Davidson
New submission from Colin Davidson: On windows 7, if a Python app is run (under python 2.7.6) and the invoking filename is capitalized differently from the source file itself, a subsequent attempt to use the multiprocessing module to "fork" a process will fail in the "forking" module. This hap