[issue8534] multiprocessing not working from egg

2015-01-30 Thread Davin Potts
Davin Potts added the comment: The example demonstrating the issue is reproducible on Windows (tested on Windows 7 64-bit, specifically) with 2.7.9. Complications arising from how multiprocessing creates new processes on Windows combined with conventions in the import system in 2.7.9 result i

[issue8534] multiprocessing not working from egg

2011-06-14 Thread Éric Araujo
Éric Araujo added the comment: I’m not sure this belongs on the Python tracker. -- nosy: +eric.araujo ___ Python tracker ___ ___ Pytho

[issue8534] multiprocessing not working from egg

2010-08-31 Thread Ask Solem
Changes by Ask Solem : -- keywords: +needs review nosy: +asksol ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue8534] multiprocessing not working from egg

2010-04-26 Thread simon
Changes by simon : -- keywords: +patch Added file: http://bugs.python.org/file17092/forking.patch ___ Python tracker ___ ___ Python-bug

[issue8534] multiprocessing not working from egg

2010-04-26 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- assignee: -> jnoller nosy: +jnoller priority: -> low stage: -> needs patch type: -> behavior versions: +Python 2.7, Python 3.1, Python 3.2 ___ Python tracker __

[issue8534] multiprocessing not working from egg

2010-04-26 Thread simon
New submission from simon : testmultiprocessing.py: def main(): import multiprocessing proc = multiprocessing.Process(target=runhi) proc.start() proc.join() def runhi(): print 'hi' if __name__ == "__main__": main() testmultiprocessing.py is inside myegg.egg s