Re: Python queue madness

2008-04-03 Thread nnp
Hrm, it sounds likely that I am using something mutable and that is messing things up. I'll look into it. As for providing sample code to recreate the problem, I would find it difficult I think to provide a simple example that accurately reflects what is truly going on so there wouldn't be much po

Re: Python queue madness

2008-04-02 Thread Gabriel Genellina
En Wed, 02 Apr 2008 10:52:08 -0300, nnp <[EMAIL PROTECTED]> escribió: > Basically I have a system where component 1, 2 and 3 communicate with > each > other using two Python Queues, we'll call them R and W. Here is what is > happening > > 1 writes data to W and reads from R > 2 reads data from W

Re: Python queue madness

2008-04-02 Thread Konstantin Veretennicov
On Wed, Apr 2, 2008 at 4:52 PM, nnp <[EMAIL PROTECTED]> wrote: > > Is there any other way for data to get onto a queue Yes, by manipulating Queue.Queue's internal "queue" attribute directly. > or are there any known bugs with Python's Queue module that could lead to > this kind of behaviour? >

Python queue madness

2008-04-02 Thread nnp
Hey guys, Basically I have a system where component 1, 2 and 3 communicate with each other using two Python Queues, we'll call them R and W. Here is what is happening 1 writes data to W and reads from R 2 reads data from W and writes data it receives from 3 to R (but not data it receives from 1)