Skip to content
Snippets Groups Projects
Commit 14cac1be authored by Paul McCarthy's avatar Paul McCarthy
Browse files

Fixes to typedict enhancements - was not combining return

values when performing recursive class hierarchy search.
parent b309db9c
No related branches found
No related tags found
No related merge requests found
...@@ -125,8 +125,9 @@ class TypeDict(object): ...@@ -125,8 +125,9 @@ class TypeDict(object):
# Otherwise, accumulate the value, and keep # Otherwise, accumulate the value, and keep
# searching # searching
else: else:
keys.append(lKey)
hits.append(val) hits.append(val)
if bykey:
keys.append(lKey)
# No more base classes to search for - there # No more base classes to search for - there
# really is no value associated with this key # really is no value associated with this key
...@@ -144,18 +145,25 @@ class TypeDict(object): ...@@ -144,18 +145,25 @@ class TypeDict(object):
for elemBase in elemBases: for elemBase in elemBases:
newKey = list(key) newKey = list(key)
newKey[i] = elemBase.__name__ newKey[i] = elemBase
if len(newKey) == 1: newKey = newKey[0] if len(newKey) == 1: newKey = newKey[0]
else: newKey = tuple(newKey) else: newKey = tuple(newKey)
try: val = self.__getitem__(newKey) try:
except KeyError: continue newVal = self.__getitem__(newKey, allhits, bykey)
except KeyError:
continue
if not allhits: return val if not allhits:
return newVal
else: else:
keys.append(newKey) if bykey:
hits.append(val) newKeys, newVals = zip(*newVal.items())
keys.extend(newKeys)
hits.extend(newVals)
else:
hits.extend(newVal)
# No value for any base classes either # No value for any base classes either
if len(hits) == 0: if len(hits) == 0:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment