[issue6461] multiprocessing: freezing apps on Windows

2015-03-05 Thread Davin Potts
Davin Potts added the comment: The original issue now appears addressed in the docs (thanks goes to Stuart and Jesse) though it was not explicitly tracked here as a patch file. The follow-on secondary issue from spongebob (if that is your real name) could not be reproduced by Richard. This is

[issue6461] multiprocessing: freezing apps on Windows

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue6461] multiprocessing: freezing apps on Windows

2013-06-20 Thread Richard Oudkerk
Richard Oudkerk added the comment: I just tried freezing the program from multiprocessing import freeze_support,Manager if __name__ == '__main__': freeze_support() m=Manager() l = m.list([1,2,3]) l.append(4) print(l) print(repr(l)) using cx_Freeze with P

[issue6461] multiprocessing: freezing apps on Windows

2013-05-21 Thread Richard Oudkerk
Changes by Richard Oudkerk : -- nosy: +sbt ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.or

[issue6461] multiprocessing: freezing apps on Windows

2013-05-21 Thread Mark Lawrence
Mark Lawrence added the comment: Could someone answer the question posed in msg98154 please. -- nosy: +BreamoreBoy ___ Python tracker ___ _

[issue6461] multiprocessing: freezing apps on Windows

2010-01-22 Thread spongebob
spongebob added the comment: I can't seem to freeze an app on Windows using multiprocessing.Manager() Are apps that use Managers freezable?? Example: from multiprocessing import freeze_support,Manager if __name__ == '__main__': freeze_support() m=Manager() will throw errors, when r

[issue6461] multiprocessing: freezing apps on Windows

2009-08-08 Thread Jesse Noller
Jesse Noller added the comment: Thanks for following up on this Stuart - I'll update the docs accordingly -- ___ Python tracker ___ __

[issue6461] multiprocessing: freezing apps on Windows

2009-08-07 Thread Stuart Mentzer
Stuart Mentzer added the comment: Further experimentation revealed that freeze_support() works properly and the proposed patch is not necessary or desirable for the general freeze case. In the case of an embedded app that calls set_executable() it seems that the "else" block calling _python_exe

[issue6461] multiprocessing: freezing apps on Windows

2009-07-18 Thread Jesse Noller
Jesse Noller added the comment: Sounds good - I've personally never used freeze on windows, so having some docs and a patch to help make it better for those that do is a definite plus -- ___ Python tracker __

[issue6461] multiprocessing: freezing apps on Windows

2009-07-18 Thread Stuart Mentzer
Stuart Mentzer added the comment: Thanks Jesse. If you make broader changes that my patch I am happy to test on Windows and with py2exe if that is helpful. I will try to get the py2exe folks to look at the broader multiprocessing issues I describe as well. If multiprocessing supports freezing o

[issue6461] multiprocessing: freezing apps on Windows

2009-07-17 Thread Jesse Noller
Jesse Noller added the comment: Thanks for noticing this. Unfortunately, I don't know enough about py2exe/windows to dig into that part. I can fix the low hanging fruit though -- ___ Python tracker __

[issue6461] multiprocessing: freezing apps on Windows

2009-07-17 Thread Nick Coghlan
Changes by Nick Coghlan : -- assignee: -> jnoller nosy: +jnoller ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue6461] multiprocessing: freezing apps on Windows

2009-07-10 Thread Stuart Mentzer
New submission from Stuart Mentzer : Freezing apps with multiprocessing on Windows seems to be broken. First, in get_command_line in multiprocessing/forking.py I find that this code: if getattr(sys, 'frozen', False): return [sys.executable, '--multiprocessing-fork']