diff --git a/mininet/net.py b/mininet/net.py index 37b1f4f..6eaac20 100755 --- a/mininet/net.py +++ b/mininet/net.py @@ -257,12 +257,10 @@ class Mininet( object ): def keys( self ): "return a list of all node names or net's keys" - #TODO: fix this return list( self ) def values( self ): "return a list of all nodes or net's values" - #TODO: fix this return [ self[name] for name in self ] def items( self ):