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 torsten
Recipients shivani, torsten
Date 2014-05-26.21:28:06
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1401139686.49.0.517111455175.issue21505@psf.upfronthosting.co.za>
In-reply-to
Content
That sounds like you did not initialize the freeze support of the multiprocessing module:

https://docs.python.org/3/library/multiprocessing.html#multiprocessing.freeze_support

Basically, you need to add the following code to your main, before anything else:

    from multiprocessing import freeze_support
    freeze_support()

Interestingly, the documentation states that starting a new Process instance without freeze_support will raise a RuntimeError. Maybe the detection of that situation failed in your case?
History
Date User Action Args
2014-05-26 21:28:06torstensetrecipients: + torsten, shivani
2014-05-26 21:28:06torstensetmessageid: <1401139686.49.0.517111455175.issue21505@psf.upfronthosting.co.za>
2014-05-26 21:28:06torstenlinkissue21505 messages
2014-05-26 21:28:06torstencreate