Re: [Python-Dev] Serial function call composition syntax foo(x, y) - bar() - baz(z)

2006-02-18 Thread Michael Hudson
Guido van Rossum [EMAIL PROTECTED] writes: It's only me that's allowed to top-post. :-) At least you include attributions these days! wink Cheers, mwh -- SPIDER: 'Scuse me. [scuttles off] ZAPHOD: One huge spider. FORD: Polite though. -- The Hitch-Hikers Guide to

Re: [Python-Dev] Serial function call composition syntax foo(x, y) - bar() - baz(z)

2006-02-17 Thread Guido van Rossum
Cut to the chase: -1000. On 2/17/06, Bengt Richter [EMAIL PROTECTED] wrote: Cut to the chase: how about being able to write baz(bar(foo(x, y)),z) serially as foo(x, y) - bar() - baz(z) via the above as sugar for baz.__get__(bar.__get__(foo(x, y))())(z) ? -- --Guido van

Re: [Python-Dev] Serial function call composition syntax foo(x, y) - bar() - baz(z)

2006-02-17 Thread Guido van Rossum
It's only me that's allowed to top-post. :-) On 2/17/06, Bengt Richter [EMAIL PROTECTED] wrote: Is that a record? ;-) BTW, does python-dev have different expectations re top-posting? I've seen more here than on c.l.p I think, so I'm wondering what to do. When-in-Rome'ly, Regards, Bengt