[issue18277] Queue is empty right after put from the same process/thread

Richard Oudkerk report at bugs.python.org
Mon Jun 24 19:19:03 CEST 2013


Richard Oudkerk added the comment:

> 1. "but should not cause any pratical difficulties" <-- you have a typo in 'pratical' there.
> 2. What exactly do you mean by "managed" queues in the new addition?

Woops.  Fixed now see 860fc6a2bd21, 347647a1f798.  A managed queue is 
one created like

     manager = multiprocessing.Manager()
     queue = manager.Queue()

queue is a proxy for a conventional queue object in a "manager" process.

> Also, did part #2 of the note come up in other reports?
> It seemed somewhat trivial (can't hurt though)...

Yes it did (but I can't find the report now).

----------

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue18277>
_______________________________________


More information about the Python-bugs-list mailing list