We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I've been having a pretty good experience using toolz with hylang, although the following scenario is pretty confusing:
file.hy
(import [toolz [partial]]) (defn eq [x] (partial = x))
file.py (converted with hy2py file.hy > file.py)
hy2py file.hy > file.py
from hy.core.shadow import = from toolz import partial def eq(x): return partial(=, x)
When executing file.py:
file.py
File "file.py", line 1 from hy.core.shadow import = ^ SyntaxError: invalid syntax
I was able to bypass it by changing the eq function to, although I wish I didn't have to :/
eq
(defn eq [x] (partial (fn [a b] (= a b)) x))
The text was updated successfully, but these errors were encountered:
Fixed in master (as of #1517). Don't forget to check whether a bug still exists in master before reporting.
Sorry, something went wrong.
No branches or pull requests
I've been having a pretty good experience using toolz with hylang, although the following scenario is pretty confusing:
file.hy
file.py (converted with
hy2py file.hy > file.py
)When executing
file.py
:I was able to bypass it by changing the
eq
function to, although I wish I didn't have to :/The text was updated successfully, but these errors were encountered: