returns a list of all nodes in all networks
( self )
| 90 | return list( self ) |
| 91 | |
| 92 | def values( self ): |
| 93 | "returns a list of all nodes in all networks" |
| 94 | return [ self[ key ] for key in self ] |
| 95 | |
| 96 | def items( self ): |
| 97 | "returns (key,value) tuple list for every node in all networks" |
no outgoing calls