Thanks Gabriel.
Posted as: http://bugs.python.org/issue6461
The multiprocessing author has tentatively confirmed the bug.
--
http://mail.python.org/mailman/listinfo/python-list
En Sat, 04 Jul 2009 22:15:43 -0300, SK escribió:
To add a bit more information, I found that I needed to patch
get_command_line in multiprocessing/forking.py [...]
Is packaging with multiprocessing supposed to be this hard? If so,
some documentation is needed.
Shouldn't be so hard, I presume
To add a bit more information, I found that I needed to patch
get_command_line in multiprocessing/forking.py replacing:
if getattr(sys, 'frozen', False):
return [sys.executable, '--multiprocessing-fork']
else:
prog = 'from multiprocessing.forking import main
Is there a method for freezing a Python 2.6 app using multiprocessing
on Windows using PyInstaller or py2exe that works? It is trying to
call my executable instead of python.exe when the process starts and
passes it --multiprocessing-fork . Adding a freeze_support() to my
main doesn't help. Do I ha