Ken Seehart wrote:
I need to create a pipe where I have one thread (or maybe a generator)
writing data to the tail while another python object is reading from
the head. This will run in real time, so the data must be deallocated
after it is consumed. Reading should block until data is writt
Ken Seehart wrote:
I need to create a pipe where I have one thread (or maybe a generator)
writing data to the tail while another python object is reading from the
head. This will run in real time, so the data must be deallocated after
it is consumed.
CPython does that when last reference di
I need to create a pipe where I have one thread (or maybe a generator)
writing data to the tail while another python object is reading from the
head. This will run in real time, so the data must be deallocated after
it is consumed. Reading should block until data is written, and writing
shoul