Skip to content

Commit

Permalink
Change shebangs to #!/usr/bin/env python (#80)
Browse files Browse the repository at this point in the history
  • Loading branch information
kbillings authored and andychu committed Feb 3, 2018
1 parent 99e6091 commit 898f2d4
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion asdl/const.py
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
"""
const.py
"""
Expand Down
2 changes: 1 addition & 1 deletion asdl/gen_python.py
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
"""
gen_python.py
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/fake_libc.py
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
"""
fake_libc.py
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/pytrace.py
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
"""
pytrace.py
"""
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/time.py
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
"""
time.py -- Replacement for coreutils 'time'.
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/virtual_memory.py
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
"""
virtual_memory.py
"""
Expand Down
2 changes: 1 addition & 1 deletion core/legacy.py
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
"""
legacy.py
Expand Down
2 changes: 1 addition & 1 deletion core/lexer_gen.py
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
"""
lex_gen.py
"""
Expand Down
2 changes: 1 addition & 1 deletion core/libstr.py
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
"""
libstr.py - String library functions that can be exposed with a saner syntax.
Expand Down
2 changes: 1 addition & 1 deletion core/test_builtin.py
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
from __future__ import print_function
"""
test_builtin.py
Expand Down
2 changes: 1 addition & 1 deletion core/word_compile.py
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
"""
word_compile.py
Expand Down
2 changes: 1 addition & 1 deletion opy/compiler2/symbols_test.py
@@ -1,4 +1,4 @@
#!/usr/bin/env python -S
#!/usr/bin/python -S
"""
symbols_test.py: Tests for symbols.py
Expand Down
2 changes: 1 addition & 1 deletion osh/ast_gen.py
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
"""
ast_gen.py
"""
Expand Down
2 changes: 1 addition & 1 deletion tools/csv_concat.py
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
"""
csv_concat.py
"""
Expand Down
2 changes: 1 addition & 1 deletion web/table/csv2html.py
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
"""
csv2html.py
Expand Down

0 comments on commit 898f2d4

Please sign in to comment.