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

so that your main thread reads stdin and then uses an instance 
of Queue to post the 'y's and 'n's it recives to your server 
thread.

Rob.
-- 
http://www.victim-prime.dsl.pipex.com/
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to