Re: [Python-Dev] Shortcut Notation for Chaining Method Calls

2007-02-04 Thread Raymond Hettinger
[Michael O'Keefe] > def desired(): >pass ># IF we had a --> operator which would execute the method at ># left but return a ref to object >#return [8,9,7,1].sort()-->reverse()-->pop(0)--> # returns [8,7,1] ># return [8,9,7,1].sort()-->reverse()-->pop(0) # returns 9 ># r

[Python-Dev] Weekly Python Patch/Bug Summary

2007-02-04 Thread Kurt B. Kaiser
Patch / Bug Summary ___ Patches : 423 open ( +2) / 3553 closed ( +4) / 3976 total ( +6) Bugs: 963 open (+20) / 6479 closed ( +8) / 7442 total (+28) RFE : 260 open ( +0) / 250 closed ( +0) / 510 total ( +0) New / Reopened Patches __ ConfigPar

Re: [Python-Dev] __dir__ and __all__

2007-02-04 Thread Josiah Carlson
See the two threads started in python-dev by Tomer Filiba on (according to my clock) July 6, 2006 and October 6, 2006, both have __dir__ in the subject. - Josiah Giovanni Bajo <[EMAIL PROTECTED]> wrote: > > Hello, > > I could not find a PEP for __dir__. I was thinking today that if __dir__ wa