Am 08.10.2011 05:52, schrieb Brian:
Thanks, Hartmut. There are some errors in the solution you posted that you'll be able to discover using your current platform before it's necessary to test on Windows.
Sure, but i was in a hurry ;-) I wanted to post the basic idea anyway.
there is no multiprocessing.forking.Popen class
These is, see `pydoc multiprocessing.forking.Popen`, just the import was wrong. One needs to import multiprocessing.forking explicitly.
You must not inherit from subprocess.Popen, which, is a different implementation. See multiprocessing.forking. This is why your code fails.
I've just uploaded an new version which works (unpackaged) on Linux. Please try this.
-- Schönen Gruß - Regards Hartmut Goebel Dipl.-Informatiker (univ.), CISSP, CSSLP Goebel Consult Spezialist für IT-Sicherheit in komplexen Umgebungen http://www.goebel-consult.de Monatliche Kolumne: http://www.cissp-gefluester.de/ Goebel Consult ist Mitglied bei http://www.7-it.de -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/pyinstaller?hl=en.
