diff --git a/hy/compiler.py b/hy/compiler.py index fbdf630..6d29418 100644 --- a/hy/compiler.py +++ b/hy/compiler.py @@ -204,8 +204,6 @@ class HyASTCompiler(object): @builds("fn") def compile_fn_expression(self, expression): - print expression, type(expression), expression.start_line - expression.pop(0) # fn ret_status = self.returnable diff --git a/setup.py b/setup.py index 4118c28..d596c52 100755 --- a/setup.py +++ b/setup.py @@ -38,6 +38,7 @@ setup( packages=[ 'hy', 'hy.lex', + 'hy.core', 'hy.models', ], author="Paul Tagliamonte",