From: fumihiko kakuma <[email protected]> Remove itervalues() and values() always returns iterator
Signed-off-by: Fumihiko Kakuma <[email protected]> --- ryu/services/protocols/bgp/info_base/base.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/ryu/services/protocols/bgp/info_base/base.py b/ryu/services/protocols/bgp/info_base/base.py index da1a480..939cf3c 100644 --- a/ryu/services/protocols/bgp/info_base/base.py +++ b/ryu/services/protocols/bgp/info_base/base.py @@ -82,9 +82,6 @@ class Table(object): raise NotImplementedError() def values(self): - return self._destinations.values() - - def itervalues(self): return iter(self._destinations.values()) def insert(self, path): -- 1.9.1 ------------------------------------------------------------------------------ What NetFlow Analyzer can do for you? Monitors network bandwidth and traffic patterns at an interface-level. Reveals which users, apps, and protocols are consuming the most bandwidth. Provides multi-vendor support for NetFlow, J-Flow, sFlow and other flows. Make informed decisions using capacity planning reports. https://ad.doubleclick.net/ddm/clk/305295220;132659582;e _______________________________________________ Ryu-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ryu-devel
