[Stackless] sendall
Eric van Riet Paap
eric2 at vanrietpaap.com
Thu Oct 10 09:34:20 CEST 2002
It's the fact that chan.send() is followed by another chan.send(),
that's what I mean by hardcoded. What I would prefer to do is send to
all current receivers. something like:
for i in range(chan.numberOfCurrentReceivers):
chan.send()
or
chan.sendall() #or chan.broadcast()
I have looked at the docstrings to see if this information is available
but I couldn't find it. I, for a moment, thought channel.queue would be
what I was looking for!
kind regards,
Eric
On Wednesday, October 9, 2002, at 10:15 PM, Christian Tismer wrote:
> Eric van Riet Paap wrote:
>> Hi,
>> in test/chantest.py it is hardcoded that there are two tasks
>> listening to channel named 'chan' (two chan.send(...) in a row). What
>> would be the easiest/best way to remove the hardcoding in this case?
>
> I don't understand what your problem is.
> What is hardcoded?
> The name "chan" happens to be the same in the receiver function
> and in the main, but that's just my laziness.
> What hardcoding would you like to remove?
>
> ciao - chris
>
> --
> Christian Tismer :^) <mailto:tismer at tismer.com>
> Mission Impossible 5oftware : Have a break! Take a ride on
> Python's
> Johannes-Niemeyer-Weg 9a : *Starship*
> http://starship.python.net/
> 14109 Berlin : PGP key -> http://wwwkeys.pgp.net/
> work +49 30 89 09 53 34 home +49 30 802 86 56 pager +49 173 24 18 776
> PGP 0x57F3BF04 9064 F4E1 D754 C2FF 1619 305B C09C 5A3B 57F3 BF04
> whom do you want to sponsor today? http://www.stackless.com/
>
>
> _______________________________________________
> Stackless mailing list
> Stackless at www.tismer.com
> http://www.tismer.com/mailman/listinfo/stackless
>
More information about the Stackless
mailing list