[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 __

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 # return