Trees | Indices | Help |
|
---|
|
object --+ | itemgetter
itemgetter(item, ...) --> itemgetter object
Return a callable object that fetches the given item(s) from its operand. After, f=itemgetter(2), the call f(r) returns r[2]. After, g=itemgetter(2,5,3), the call g(r) returns (r[2], r[5], r[3])
|
|||
|
|||
|
|||
a new object with type S, a subtype of T |
|
||
Inherited from |
|
|||
|
x.__getattribute__('name') <==> x.name
|
|
Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0 on Tue Jan 29 22:43:56 2008 | http://epydoc.sourceforge.net |