-
Notifications
You must be signed in to change notification settings - Fork 108
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
Remove wayward "shbangs" in Python 3 library files #2917
Conversation
And we also remove the unnecessary `cli/getconf.py` file. This work was identified while reviewing PR distributed-system-analysis#2901.
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.
I guess I have no problem with this, but a quick search suggests that we have 69 such files...why do we address only five of them here?
And, why is removing the line (as opposed to setting it to something "standard") the proper fix?
These are all I find searching from These are library modules never executed directly by the shell, and the bash wrappers (either direct |
Ah! Perhaps that's the answer.
Aside from a few in |
And, FWIW, here are the shbangs that I found:
So, we're about 90% consistent.... |
The ones under |
I suspect that it is keying off the eXecute bit on the file and that the directory has nothing to do with it. If that's the case, then we missed one -- |
And we also remove the unnecessary
cli/getconf.py
file.This work was identified while reviewing PR #2901.