Jeffrey Barish wrote:
> Several methods in Queue.Queue have warnings in their doc strings that they
> are not reliable (e.g., qsize). I note that the code in all these methods
> is bracketed with lock acquire/release. These locks are intended to
> protect the enclosed code from collisions with ot
[Jeffrey Barish]
> Several methods in Queue.Queue have warnings in their doc strings that they
> are not reliable (e.g., qsize). I note that the code in all these methods
> is bracketed with lock acquire/release. These locks are intended to
> protect the enclosed code from collisions with other t
Several methods in Queue.Queue have warnings in their doc strings that they
are not reliable (e.g., qsize). I note that the code in all these methods
is bracketed with lock acquire/release. These locks are intended to
protect the enclosed code from collisions with other threads. I am
wondering w