Re: Comments appreciated on Erlang inspired Process class.

2007-06-04 Thread Nick Craig-Wood
Brian L. Troutwine <[EMAIL PROTECTED]> wrote: > Lately I've been tinkering around with Erlang and have begun to sorely want > some of its features in Python, mostly the ease at which new processes can > be > forked off for computation. To that end I've coded up a class I call, > boringly en

Re: Comments appreciated on Erlang inspired Process class.

2007-06-01 Thread George Sakkis
On Jun 1, 2:20 pm, "Brian L. Troutwine" <[EMAIL PROTECTED]> wrote: > >http://wiki.python.org/moin/ParallelProcessing > > Ah, I'd forgotten about that page of the wiki; I hadn't seen it for a few > months. > > > Do you have any opinions about those projects listed on the above page > > that are sim

Re: Comments appreciated on Erlang inspired Process class.

2007-06-01 Thread MC
Hi! Look Candygram : http://candygram.sourceforge.net/ -- @-salutations Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list

Re: Comments appreciated on Erlang inspired Process class.

2007-06-01 Thread Brian L. Troutwine
> http://wiki.python.org/moin/ParallelProcessing Ah, I'd forgotten about that page of the wiki; I hadn't seen it for a few months. > Do you have any opinions about those projects listed on the above page > that are similar to your own? My contribution (pprocess), along with > others (processing,

Re: Comments appreciated on Erlang inspired Process class.

2007-06-01 Thread Paul Boddie
On 1 Jun, 19:34, "Brian L. Troutwine" <[EMAIL PROTECTED]> wrote: > Lately I've been tinkering around with Erlang and have begun to sorely want > some of its features in Python, mostly the ease at which new processes can be > forked off for computation. To that end I've coded up a class I call, > bo

Comments appreciated on Erlang inspired Process class.

2007-06-01 Thread Brian L. Troutwine
Lately I've been tinkering around with Erlang and have begun to sorely want some of its features in Python, mostly the ease at which new processes can be forked off for computation. To that end I've coded up a class I call, boringly enough, Process. It takes a function, its args and keywords and