| Home | Trees | Indices | Help |
|
|---|
|
|
object --+
|
tuple --+
|
EdgeType
Represents all possible edge types. By default, there are four types: any edge can be part of the acyclic graph or not, and can be active or not.
The default edge type is active and acylic.
|
|||
|
Inherited from Inherited from |
|||
|
|||
| a new object with type S, a subtype of T |
|
||
|
|||
|
active itemgetter(item, ...) --> itemgetter object |
|||
|
acyclic itemgetter(item, ...) --> itemgetter object |
|||
|
Inherited from |
|||
|
|||
|
|
|||
activeitemgetter(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])
|
acyclicitemgetter(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 Oct 10 19:04:04 2011 | http://epydoc.sourceforge.net |