From 10b3d6c3ccf20fcca1434181a92c2d5a85f9bbfb Mon Sep 17 00:00:00 2001 From: Paul Tagliamonte Date: Mon, 17 Dec 2012 09:26:24 -0500 Subject: [PATCH] Tooling around real quick from this morning --- hy/lang/map.py | 2 +- setup.py | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/hy/lang/map.py b/hy/lang/map.py index 37902ec..b3b67a7 100644 --- a/hy/lang/map.py +++ b/hy/lang/map.py @@ -7,4 +7,4 @@ class HYMap(dict, HYObject): self[node] = nodes[node] def get_children(self): - return self.keys() + return self.keys() + self.values() diff --git a/setup.py b/setup.py index 6d12bf3..4268f7a 100755 --- a/setup.py +++ b/setup.py @@ -10,7 +10,10 @@ setup(**{ "name": appname, "version": version, "packages": [ - 'hy' + 'hy', + 'hy.lang', + 'hy.lex', + 'hy.compiler' ], "author": "Paul Tagliamonte", "author_email": "paultag@debian.org",