Re: Py2exe and Multi Treading problem.

2008-03-16 Thread Farsheed Ashouri
On Mar 12, 10:35 pm, Thin Myrna <[EMAIL PROTECTED]> wrote: > Farsheed Ashouri wrote: > > NO it dont work. If I remove threading part, it works like a charm. > > Any Idea? > > Of course it does then. Try to join the thread or do something else to > prevent the non-threading part to exit prematurely.

Re: Py2exe and Multi Treading problem.

2008-03-12 Thread Thin Myrna
Farsheed Ashouri wrote: > NO it dont work. If I remove threading part, it works like a charm. > Any Idea? Of course it does then. Try to join the thread or do something else to prevent the non-threading part to exit prematurely. HTH Thin -- http://mail.python.org/mailman/listinfo/python-list

Re: Py2exe and Multi Treading problem.

2008-03-12 Thread Farsheed Ashouri
NO it dont work. If I remove threading part, it works like a charm. Any Idea? -- http://mail.python.org/mailman/listinfo/python-list

Re: Py2exe and Multi Treading problem.

2008-03-12 Thread GHUM
Farsheed Ashouri , > Here is my script > #** > #** > import threading > import socket > def openSocket(portNum): > mySocket = socket.socket ( socket.AF_INET,

Py2exe and Multi Treading problem.

2008-03-11 Thread Farsheed Ashouri
Here is my script #** #** import threading import socket def openSocket(portNum): mySocket = socket.socket ( socket.AF_INET, socket.SOCK_STREAM ) mySocket.