On Jun 21, 11:34 pm, Terry Reedy <[EMAIL PROTECTED]> wrote:
> joamag wrote:
> > Is there any possible way to unblock the sys.stdin.readline() call
> > from a different thread.
>
> If you want the thread to do something 'else' when no input is
> available, would this work?  Put readline in a thread that puts lines in
> a q=queue.Quese().  Then
> try:
>      l=q.ge_nowait
>      <process l>
> except queue.Empty
>      <whatever without l>

Yes, that would work but still I would have a thread that would block
(the one with the readline call).
The problem with that solution is that if I try to exit the
application, while the thread is waiting in the readline call, that
thread would be blocking the exit of the application.
That behavior occurs even if the thread is configured in daemon mode.
Do you think it’s possible to solve the readline blocking problem in
any other way ?
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to