Home | Trees | Indices | Help |
|
---|
|
object --+ | tuple --+ | Token
Instance Methods | |
Inherited from Inherited from |
Static Methods | |||
a new object with type S, a subtype of T |
|
Properties | |
type itemgetter(item, ...) --> itemgetter object |
|
value itemgetter(item, ...) --> itemgetter object |
|
lineno itemgetter(item, ...) --> itemgetter object |
|
Inherited from |
Method Details |
|
Property Details |
typeitemgetter(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])
|
valueitemgetter(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])
|
linenoitemgetter(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])
|
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Mon Aug 25 14:35:54 2008 | http://epydoc.sourceforge.net |