no`name` wrote in news:[EMAIL PROTECTED]
in comp.lang.python:
> maybe someone have some ideas how to block first stdin in main
> function and get stdin from the thread when here is a new connection?
>
No, but you could instead use a Queue:
http://docs.python.org/lib/module-Queue.html
Hi, i'm new in Python and i'm trying to write some server which can
confirm connection from client.
Here is a part of code:
import sys
import threading
from socket import *
class TelGUI(threading.Thread):
def __init__(self):
threading.Thread.__init__(self)
def ru