sbt <shibt...@gmail.com> added the comment:

> IIUC returning True is not incorrect, only useless.  In the stdlib I 
> usually see “with lock:”.  Can you tell what is the use case for 
> accessing the condition object inside the context block?  Does it 
> apply only to Condition or also to *Lock and Semaphore?

I was going to do something like

  with Condition() as c:
    Thread(target=foo, args=(c,...)).start()
    c.wait_for(...)

But I will agree that I don't have a compelling use case.

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue14116>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to