Re: functional 0.5 released

2006-02-11 Thread bonono
Collin Winter wrote: > On 10 Feb 2006 19:57:48 -0800, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > > > Collin Winter wrote: > > > As always, feedback welcome! > > > > Any specific reason flip only flip the first 2 arguments rather than > > the whole tuple ? > > > > That is, I would like to see

Re: functional 0.5 released

2006-02-11 Thread Collin Winter
On 10 Feb 2006 19:57:48 -0800, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Collin Winter wrote: > > As always, feedback welcome! > > Any specific reason flip only flip the first 2 arguments rather than > the whole tuple ? > > That is, I would like to see: > > assert(f(a,b,c, d) == flip(f)(d, c

Re: [ANN] functional 0.5 released

2006-02-11 Thread Collin Winter
On 2/11/06, Neal Becker <[EMAIL PROTECTED]> wrote: > I just installed from .tar.gz on fedora FC5 x86_64. I ran into 1 small > problem: > [snip] > Because this distribution was installed --multi-version or --install-dir, > before you can import modules from this package in an application, you > wil

Re: [ANN] functional 0.5 released

2006-02-11 Thread Neal Becker
I just installed from .tar.gz on fedora FC5 x86_64. I ran into 1 small problem: sudo python setup.py install --verbose running install running bdist_egg running egg_info writing functional.egg-info/PKG-INFO writing top-level names to functional.egg-info/top_level.txt reading manifest file 'functi

Re: functional 0.5 released

2006-02-10 Thread bonono
Collin Winter wrote: > As always, feedback welcome! Any specific reason flip only flip the first 2 arguments rather than the whole tuple ? That is, I would like to see: assert(f(a,b,c, d) == flip(f)(d, c, b, a)) -- http://mail.python.org/mailman/listinfo/python-list

[ANN] functional 0.5 released

2006-02-10 Thread Collin Winter
Hello all, I have released version 0.5 of my functional module, a collection of higher-order and functional programming tools for Python. Currently offered are tools for function composition, partial function application, plus flip, foldl, foldr, scanl and scanr functions. Two version of the rele