You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It might because Result.__add__ at compiler.py#L1207 (ret += self.compile(...))and compiler.py#L312 (result.expr = other.expr); I printed Result before and after parsing the second require.
It seems that
hy2py
only generates the last module in(require ...)
. It might be something wrong withinhy_compile
according to the generated AST.Example source file
test.hy
:(require [hy.contrib.loop [loop]] [hy.contrib.walk [let]])
Run with
hy2py -sa test.hy
:The text was updated successfully, but these errors were encountered: