1. functools.partialpre: partialpre( f, x, y )( z )-> f( z, x, y ) 2. functools.pare: pare( f, 1 )( x, y )-> f( y ) 3. functools.parepre: parepre( f, 1 )( x, y )-> f( x ) 4. functools.calling_default: calling_default( f, a, DefaultA, b )-> f( a, <default 2rd arg, even if not None>, b ) -- http://mail.python.org/mailman/listinfo/python-list
- functools possibilities castironpi
- Re: functools possibilities Steven Bethard
- Re: functools possibilities castironpi
- Re: functools possibilities Steve Holden