[issue1175933] threading.Condition.wait() return value indicates timeout

2009-03-30 Thread Guido van Rossum
Guido van Rossum gu...@python.org added the comment: Since Tim Peters is the absolute authority on concurrency in Python, let's just close this as Rejected rather than letting it sit here forever. -- nosy: +gvanrossum resolution: - rejected status: open - closed

[issue1175933] threading.Condition.wait() return value indicates timeout

2008-02-28 Thread Noriyuki Hosaka
Noriyuki Hosaka added the comment: I have a question: Why not to raise an exception? Timeout means something has messed up, can not continue. We are not doing task scheduling, aren't we? -- nosy: +bgnori _ Tracker [EMAIL PROTECTED]

[issue1175933] threading.Condition.wait() return value indicates timeout

2008-02-28 Thread Benjamin Peterson
Benjamin Peterson added the comment: I don't think an exception is the proper thing to use here. Having the wait timeout is not exceptional or unexpected. Timeout means something has messed up, can not continue. Not really. It means we didn't want to wait this long to be notified. --

[issue1175933] threading.Condition.wait() return value indicates timeout

2008-01-19 Thread Christian Heimes
Christian Heimes added the comment: Another bug day task. -- keywords: +easy nosy: +tiran type: - rfe versions: +Python 2.6 -Python 2.4 _ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1175933 _