Sudharsan R added the comment:

Just add on to it..
q=queue.Queue()
with q.not_full:
        q.put_nowait(1)

this will hang. So if we acquire the not_full while computing size, all puts 
will wait. Same is the case for q.empty() and q.not_empty method and condition 
respectively.

----------

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

Reply via email to