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

Allow runpy to consider non-standard Hy source extensions #1678

Merged
merged 1 commit into from
Sep 24, 2018

Conversation

brandonwillard
Copy link
Member

@brandonwillard brandonwillard commented Sep 5, 2018

Adds Hy parsing of files with unrecognized source extensions to cmdline Hy.

The fallback is tried only after first attempting standard Python compilation. If the attempt raises a SyntaxError (and the file is not clearly identified as Python source via its extension), then it tries Hy.
The reason for choosing the order Python-then-Hy is somewhat arbitrary, except for the impression that Python's parsing might be more efficient than Hy's and, thus, better as a first attempt.

@brandonwillard
Copy link
Member Author

brandonwillard commented Sep 5, 2018

@Kodiologist, the one failure on Travis — for pypy3 — is really weird; do you mind retrying that check manually?

I've seen spurious errors for other projects with pypy3 on Travis recently, and I can never reproduce them locally. Perhaps it's because I have pypy at Python 3.5.3[pypy-6.0.0-final] on my machine, but, still, the errors make no sense whatsoever (relative to the changes, or otherwise).

@Kodiologist
Copy link
Member

I don't think this is the right way to address #1677. For example, if there's a syntax error for both Python and Hy interpretations of the file, which error do you show?

@Kodiologist, the one failure on Travis — for pypy3 — is really weird; do you mind retrying that check manually?

I don't think that's an option on Travis, but you can trivially change your top commit (e.g. git commit --amend --reset-author to change the timestamp) and then force-push.

@brandonwillard
Copy link
Member Author

brandonwillard commented Sep 5, 2018

In this case, the Hy error, just as if we only assumed the file was Hy. Otherwise, do you think Python should never even be tried for unknown filetypes?

For Travis, I've been able to retry with this before.

@Kodiologist
Copy link
Member

For Travis, I've been able to retry with this before.

Oh, I didn't notice that button. I've pushed it.

Otherwise, do you think Python should never even be tried for unknown filetypes?

In the case of invoking hy FILENAME, indeed it shouldn't be tried. runpy.run_path, on the other hand, should probably assume Python. Otherwise you'll see Hy syntax errors when you try to run a Python script that you made a typo in, right?

@brandonwillard brandonwillard force-pushed the run-ambiguous-files-as-hy branch from b5ae94d to 662559d Compare September 5, 2018 18:10
@brandonwillard
Copy link
Member Author

@Kodiologist, this new approach should do just that. I chose to copy the runpy module to produce a runhy that works exactly like runpy except that it prefers Hy for unknown file types. It uses the same patching as before, but with a different, more inclusive condition for Hy files.

With this approach, we preserve the functionality of runpy for the Hy-centric cmdline case and the standard runpy (still patched for limited Hy parsing) without wastefully reproducing its logic.

@Kodiologist
Copy link
Member

Neat! Try adding a test where the shebang line is used by running the file as an executable, too. Assuming it's possible to arrange for that in pytest.

@brandonwillard
Copy link
Member Author

It is possible, but wouldn't that only be testing the shell's ability to correctly run a script?

@Kodiologist
Copy link
Member

Not quite, since this failed even though my shell didn't have a relevant bug.

@Kodiologist
Copy link
Member

Nah, forget it, it's probably overkill. I'll review this soon.

Copy link
Member

@Kodiologist Kodiologist left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Excellent work. Thanks so much. No NEWS update is needed since the bug being fixed is a regression since the previous release.

This change a Hy-preferring `runhy` that is used by cmdline Hy.  Standard
`runpy` is still patched so that it can run `.hy` files, but the default
behaviour for unknown filetypes is preserved (i.e. assume they are Python
source).

Closes hylang#1677.
@Kodiologist
Copy link
Member

Sorry I forgot about Hy for a few days there. I'll merge this now.

@Kodiologist Kodiologist force-pushed the run-ambiguous-files-as-hy branch from 662559d to c0c5c9c Compare September 24, 2018 20:28
@Kodiologist Kodiologist merged commit 1707f60 into hylang:master Sep 24, 2018
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

Successfully merging this pull request may close these issues.

2 participants