Skip to content
New issue

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

hy2py syntax error with toolz.partial #1600

Closed
dsevero opened this issue May 2, 2018 · 1 comment
Closed

hy2py syntax error with toolz.partial #1600

dsevero opened this issue May 2, 2018 · 1 comment

Comments

@dsevero
Copy link

dsevero commented May 2, 2018

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)

from hy.core.shadow import =
from toolz import partial


def eq(x):
    return partial(=, x)

When executing 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 :/

(defn eq [x]
  (partial (fn [a b] (= a b)) x))
@dsevero dsevero changed the title hy2py syntax error with toolz.curried.partial hy2py syntax error with toolz.partial May 2, 2018
@dsevero dsevero closed this as completed May 2, 2018
@dsevero dsevero reopened this May 2, 2018
@Kodiologist
Copy link
Member

Fixed in master (as of #1517). Don't forget to check whether a bug still exists in master before reporting.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants