removing todos in net.py

This commit is contained in:
Brian O'Connor
2013-09-11 12:00:14 -07:00
parent 967614f64a
commit 0840af5277
-2
View File
@@ -257,12 +257,10 @@ class Mininet( object ):
def keys( self ): def keys( self ):
"return a list of all node names or net's keys" "return a list of all node names or net's keys"
#TODO: fix this
return list( self ) return list( self )
def values( self ): def values( self ):
"return a list of all nodes or net's values" "return a list of all nodes or net's values"
#TODO: fix this
return [ self[name] for name in self ] return [ self[name] for name in self ]
def items( self ): def items( self ):