Merge branch 'master' of github.com:tenach/hy into earmuffs

This commit is contained in:
Thomas Mashek 2013-03-12 13:09:15 -07:00
commit d68c1149e2

View File

@ -49,7 +49,7 @@ def process(tree):
return ntree
if isinstance(tree, HyDict):
obj = HyDict({process(x): process(tree[x]) for x in tree})
obj = HyDict(dict((process(x), process(tree[x])) for x in tree))
obj.replace(tree)
return obj