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 James.Burke
Recipients ColinPDavidson, James.Burke, brett.cannon, eric.snow, inlinestyle, ncoghlan, nmz787, pitrou
Date 2014-11-27.00:47:54
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1417049274.12.0.690249792075.issue21614@psf.upfronthosting.co.za>
In-reply-to
Content
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(multiprocessing.Process):
    def __init__(self):
        multiprocessing.Process.__init__(self)
    def run(test):
        for x in range(1, 10):
            print x
            time.sleep(1)

if __name__ == '__main__':
    p = MP_Bug()
    p.start()
History
Date User Action Args
2014-11-27 00:47:54James.Burkesetrecipients: + James.Burke, brett.cannon, ncoghlan, pitrou, eric.snow, ColinPDavidson, nmz787, inlinestyle
2014-11-27 00:47:54James.Burkesetmessageid: <1417049274.12.0.690249792075.issue21614@psf.upfronthosting.co.za>
2014-11-27 00:47:54James.Burkelinkissue21614 messages
2014-11-27 00:47:54James.Burkecreate