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 spongebob
Recipients jnoller, sgm, spongebob
Date 2010-01-22.17:38:29
SpamBayes Score 9.198569e-09
Marked as misclassified No
Message-id <1264181911.06.0.661870715414.issue6461@psf.upfronthosting.co.za>
In-reply-to
Content
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 run:

Process SyncManager-1:
Traceback (most recent call last):
  File "multi_exe\build\pyi.win32\multi_exe\outPYZ1.pyz/multiprocessing.process"
, line 232, in _bootstrap
  File "multi_exe\build\pyi.win32\multi_exe\outPYZ1.pyz/multiprocessing.process"
, line 88, in run
  File "multi_exe\build\pyi.win32\multi_exe\outPYZ1.pyz/multiprocessing.managers
", line 520, in _run_server
IOError: [Errno 6] The handle is invalid
Traceback (most recent call last):
  File "<string>", line 5, in <module>
  File "multi_exe\build\pyi.win32\multi_exe\outPYZ1.pyz/multiprocessing", line 9
8, in Manager
  File "multi_exe\build\pyi.win32\multi_exe\outPYZ1.pyz/multiprocessing.managers
", line 499, in start
EOFError
History
Date User Action Args
2010-01-22 17:38:31spongebobsetrecipients: + spongebob, jnoller, sgm
2010-01-22 17:38:31spongebobsetmessageid: <1264181911.06.0.661870715414.issue6461@psf.upfronthosting.co.za>
2010-01-22 17:38:29spongeboblinkissue6461 messages
2010-01-22 17:38:29spongebobcreate