Skip to content

Commit bab69dc

Browse files
committed
Use python2 instead of python in #! lines in pypy/bin/*.
In 8e9f4fa, I did a similar change for /pytest.py and nobody complained, so I hope this will not break anyone’s workflow. :)
1 parent 736ab9b commit bab69dc

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

pypy/bin/checkmodule.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#! /usr/bin/env python
1+
#! /usr/bin/env python2
22
"""
33
Usage: checkmodule.py <module-name>
44

pypy/bin/dotviewer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#! /usr/bin/env python
1+
#! /usr/bin/env python2
22
"""
33
Command-line interface for a dot file viewer.
44
Run with no arguments for help.

pypy/bin/pyinteractive.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python2
22

33
"""Main entry point into the PyPy interpreter. For a list of options, type
44

pypy/bin/reportstaticdata.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python2
22

33
"""
44
Usage: reportstaticdata.py [-m1|-m2|-t] [OPTION]... FILENAME

0 commit comments

Comments
 (0)