Re: multiprocessing.Process can not start a thread in py2exe

2017-05-20 Thread Ho Yeung Lee
On Sunday, May 21, 2017 at 2:47:26 PM UTC+8, Ho Yeung Lee wrote: > On Sunday, May 21, 2017 at 2:40:49 PM UTC+8, top...@googlemail.com wrote: > > Did you call freeze_support() function after script start? > > https://docs.python.org/3/library/multiprocessing.html#multiprocessing.freeze_support > >

Re: multiprocessing.Process can not start a thread in py2exe

2017-05-20 Thread Ho Yeung Lee
On Sunday, May 21, 2017 at 2:40:49 PM UTC+8, top...@googlemail.com wrote: > Did you call freeze_support() function after script start? > https://docs.python.org/3/library/multiprocessing.html#multiprocessing.freeze_support no, i did not call freeze_support() -- https://mail.python.org/mailman/li

Re: multiprocessing.Process can not start a thread in py2exe

2017-05-20 Thread topic2k--- via Python-list
Did you call freeze_support() function after script start? https://docs.python.org/3/library/multiprocessing.html#multiprocessing.freeze_support -- https://mail.python.org/mailman/listinfo/python-list

Re: multiprocessing.Process can not start a thread in py2exe

2017-05-20 Thread Ho Yeung Lee
i mean executable file can not run the multiprocessing thread after convert to executable file with py2exe On Sunday, May 21, 2017 at 2:09:04 PM UTC+8, Ho Yeung Lee wrote: > p = multiprocessing.Process(target=helloconnect, args=(host,"",)) > > multiprocessing.Process can not start a thread in