]> git.madduck.net Git - etc/vim.git/commit

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Remove unnecessary shebang lines (#189)
authorChristian Heimes <christian@python.org>
Fri, 4 May 2018 20:52:17 +0000 (22:52 +0200)
committerŁukasz Langa <lukasz@langa.pl>
Fri, 4 May 2018 20:52:17 +0000 (13:52 -0700)
commitadf4ebd2d9540dd0812e2db0e5735a5d28d31d81
treeeb189fae38996465626bbce00d36c68cf0c0ea7d
parente84dee52d91d84d58b7a77096ba9cce761317366
Remove unnecessary shebang lines (#189)

Since black.py is not marked as executable, the shebang in black.py serves
no purpose. black should be invoked through its entry point any way.

token.py is an internal module without a __name__ == '__main__' block or
other executable code. It contains just list of constants and small
helper functions.

Signed-off-by: Christian Heimes <christian@python.org>
black.py
blib2to3/pgen2/token.py [changed mode: 0755->0644]