9358: get_table_metadata(nav_type) anomaly

This commit is contained in:
Doug Blank 2016-04-08 07:30:02 -04:00
parent dd0f0c6f3e
commit 324cea5dd3
8 changed files with 15 additions and 15 deletions

View File

@ -727,7 +727,7 @@ class DbGeneric(DbWriteBase, DbReadBase, UpdateCallback, Callback):
Private implementation of get_table_func. Private implementation of get_table_func.
""" """
if table is None: if table is None:
return self.__tables.keys() return list(self.__tables.keys())
elif func is None: elif func is None:
return self.__tables[table] # dict of functions return self.__tables[table] # dict of functions
elif func in self.__tables[table].keys(): elif func in self.__tables[table].keys():

View File

@ -181,9 +181,9 @@ class FilterProxyDb(ProxyDbBase):
Private implementation of get_table_func. Private implementation of get_table_func.
""" """
if table is None: if table is None:
return self.__tables.keys() return list(self.__tables.keys())
elif func is None: elif func is None:
return self.__tables[table].keys() return self.__tables[table]
elif func in self.__tables[table].keys(): elif func in self.__tables[table].keys():
return self.__tables[table][func] return self.__tables[table][func]
else: else:

View File

@ -194,9 +194,9 @@ class LivingProxyDb(ProxyDbBase):
Private implementation of get_table_func. Private implementation of get_table_func.
""" """
if table is None: if table is None:
return self.__tables.keys() return list(self.__tables.keys())
elif func is None: elif func is None:
return self.__tables[table].keys() return self.__tables[table]
elif func in self.__tables[table].keys(): elif func in self.__tables[table].keys():
return self.__tables[table][func] return self.__tables[table][func]
else: else:

View File

@ -164,9 +164,9 @@ class PrivateProxyDb(ProxyDbBase):
Private implementation of get_table_func. Private implementation of get_table_func.
""" """
if table is None: if table is None:
return self.__tables.keys() return list(self.__tables.keys())
elif func is None: elif func is None:
return self.__tables[table].keys() return self.__tables[table]
elif func in self.__tables[table].keys(): elif func in self.__tables[table].keys():
return self.__tables[table][func] return self.__tables[table][func]
else: else:

View File

@ -232,9 +232,9 @@ class ProxyDbBase(DbReadBase):
Private implementation of get_table_func. Private implementation of get_table_func.
""" """
if table is None: if table is None:
return self.__tables.keys() return list(self.__tables.keys())
elif func is None: elif func is None:
return self.__tables[table].keys() return self.__tables[table]
elif func in self.__tables[table].keys(): elif func in self.__tables[table].keys():
return self.__tables[table][func] return self.__tables[table][func]
else: else:

View File

@ -193,9 +193,9 @@ class ReferencedBySelectionProxyDb(ProxyDbBase):
Private implementation of get_table_func. Private implementation of get_table_func.
""" """
if table is None: if table is None:
return self.__tables.keys() return list(self.__tables.keys())
elif func is None: elif func is None:
return self.__tables[table].keys() return self.__tables[table]
elif func in self.__tables[table].keys(): elif func in self.__tables[table].keys():
return self.__tables[table][func] return self.__tables[table][func]
else: else:

View File

@ -482,9 +482,9 @@ class DbBsddbRead(DbReadBase, Callback):
Private implementation of get_table_func. Private implementation of get_table_func.
""" """
if table is None: if table is None:
return self.__tables.keys() return list(self.__tables.keys())
elif func is None: elif func is None:
return self.__tables[table].keys() return self.__tables[table]
elif func in self.__tables[table].keys(): elif func in self.__tables[table].keys():
return self.__tables[table][func] return self.__tables[table][func]
else: else:

View File

@ -385,9 +385,9 @@ class DbBsddb(DbBsddbRead, DbWriteBase, UpdateCallback):
Private implementation of get_table_func. Private implementation of get_table_func.
""" """
if table is None: if table is None:
return self.__tables.keys() return list(self.__tables.keys())
elif func is None: elif func is None:
return self.__tables[table].keys() return self.__tables[table]
elif func in self.__tables[table].keys(): elif func in self.__tables[table].keys():
return self.__tables[table][func] return self.__tables[table][func]
else: else: