[Python-Dev] PEP 309: Partial method application

Raymond Hettinger raymond.hettinger at verizon.net
Thu Aug 18 18:00:06 CEST 2005


[Ian Bicking]
> I think partial() misses an important use case of method getting, for
> instance:
> 
>      lst = ['A', 'b', 'C']
>      lst.sort(key=partialmethod('lower'))

We've already got one:

       lst.sort(key=operator.attrgetter('lower'))


Raymond



More information about the Python-Dev mailing list