diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-03-11 22:33:25 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-03-11 22:33:25 (GMT) |
commit | 9cf41d0c9d48e6f7df971ebc596aa4cf269b70bb (patch) | |
tree | f9501c1ee9cda66cc615050332b2372dd0740751 /Lib/test | |
parent | afa595b31bc3e3ff1fd1e5f03ee9dd4db14371a7 (diff) | |
download | cpython-9cf41d0c9d48e6f7df971ebc596aa4cf269b70bb.zip cpython-9cf41d0c9d48e6f7df971ebc596aa4cf269b70bb.tar.gz cpython-9cf41d0c9d48e6f7df971ebc596aa4cf269b70bb.tar.bz2 |
normalize shebang lines to #!/usr/bin/env python
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_bz2.py | 2 | ||||
-rw-r--r-- | Lib/test/test_optparse.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_bz2.py b/Lib/test/test_bz2.py index f68586d..cbe47fd 100644 --- a/Lib/test/test_bz2.py +++ b/Lib/test/test_bz2.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python from test import test_support from test.test_support import TESTFN, import_module diff --git a/Lib/test/test_optparse.py b/Lib/test/test_optparse.py index 7733813..7275d89 100644 --- a/Lib/test/test_optparse.py +++ b/Lib/test/test_optparse.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python # # Test suite for Optik. Supplied by Johannes Gijsbers |