This commit is contained in:
Paul Tagliamonte 2013-03-08 18:47:59 -05:00
parent abf63fca12
commit 3028570995
2 changed files with 1 additions and 2 deletions

View File

@ -204,8 +204,6 @@ class HyASTCompiler(object):
@builds("fn") @builds("fn")
def compile_fn_expression(self, expression): def compile_fn_expression(self, expression):
print expression, type(expression), expression.start_line
expression.pop(0) # fn expression.pop(0) # fn
ret_status = self.returnable ret_status = self.returnable

View File

@ -38,6 +38,7 @@ setup(
packages=[ packages=[
'hy', 'hy',
'hy.lex', 'hy.lex',
'hy.core',
'hy.models', 'hy.models',
], ],
author="Paul Tagliamonte", author="Paul Tagliamonte",