From 0840af5277f49e9b1e32e66bfbc7ebb912b9fc46 Mon Sep 17 00:00:00 2001 From: Brian O'Connor Date: Mon, 26 Aug 2013 23:23:31 -0700 Subject: [PATCH] removing todos in net.py --- mininet/net.py | 2 -- 1 file changed, 2 deletions(-) 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 ):