In article <[email protected]>, <[email protected]> wrote: > >I have a problem with Condition.wait(), it doesn't return after the >given timeout. The thing is that if I try to create a simple program, >it works as expected, but in the actual code, the timeout is not >respected (albeit the notify()s work as expected).
Whether or not there's a bug, you likely will simplify your code if you switch to using a Queue(). -- Aahz ([email protected]) <*> http://www.pythoncraft.com/ "If you think it's expensive to hire a professional to do the job, wait until you hire an amateur." --Red Adair -- http://mail.python.org/mailman/listinfo/python-list
