-
Notifications
You must be signed in to change notification settings - Fork 370
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
Allow runpy
to consider non-standard Hy source extensions
#1678
Conversation
@Kodiologist, the one failure on Travis — for I've seen spurious errors for other projects with |
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?
I don't think that's an option on Travis, but you can trivially change your top commit (e.g. |
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. |
Oh, I didn't notice that button. I've pushed it.
In the case of invoking |
b5ae94d
to
662559d
Compare
@Kodiologist, this new approach should do just that. I chose to copy the With this approach, we preserve the functionality of |
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. |
It is possible, but wouldn't that only be testing the shell's ability to correctly run a script? |
Not quite, since this failed even though my shell didn't have a relevant bug. |
Nah, forget it, it's probably overkill. I'll review this soon. |
There was a problem hiding this 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.
Sorry I forgot about Hy for a few days there. I'll merge this now. |
662559d
to
c0c5c9c
Compare
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 aSyntaxError
(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.