python3: fix bgp reggression

fix the c0590ea903d1fbe40a22e04970d5a8a7e489aa44 commit.

Reported-by: Toshiki Tsuboi <t.tsubo2000@gmail.com>
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Tested-by: Toshiki Tsuboi <t.tsubo2000@gmail.com>
This commit is contained in:
FUJITA Tomonori 2015-06-29 22:51:57 +09:00
parent 0e4fec9f1f
commit 093776af17

View File

@ -80,6 +80,9 @@ class Table(object):
"""
raise NotImplementedError()
def values(self):
return self._destinations.values()
def itervalues(self):
return iter(self._destinations.values())