mirror of
https://github.com/python/cpython.git
synced 2025-09-26 10:19:53 +00:00
gh-119070: Fix py.exe handling of /usr/bin/env commands missing extension (GH-119426)
(cherry picked from commit df93f5d4bf
)
Co-authored-by: Steve Dower <steve.dower@python.org>
This commit is contained in:
parent
dcfbd3be9f
commit
c3cfc04a73
3 changed files with 12 additions and 1 deletions
|
@ -764,3 +764,11 @@ class TestLauncher(unittest.TestCase, RunPyMixin):
|
|||
with self.script(f'#! /usr/bin/env {exe.stem} arg1') as script:
|
||||
data = self.run_py([script], env=env)
|
||||
self.assertEqual(data["stdout"].strip(), f"{quote(exe)} arg1 {quote(script)}")
|
||||
|
||||
def test_shebang_executable_extension(self):
|
||||
with self.script('#! /usr/bin/env python3.12') as script:
|
||||
data = self.run_py([script])
|
||||
expect = "# Search PATH for python3.12.exe"
|
||||
actual = [line.strip() for line in data["stderr"].splitlines()
|
||||
if line.startswith("# Search PATH")]
|
||||
self.assertEqual([expect], actual)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue