diff options
author | Steve Dower <steve.dower@python.org> | 2024-05-29 17:51:13 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-29 17:51:13 (GMT) |
commit | df93f5d4bf9d70036d485666d4dd4f009d37f8b9 (patch) | |
tree | cfb0394d6adcc3fbab67134c62e79f534dff5997 /Misc/NEWS.d/next/Windows | |
parent | fcca08ec2f48f4ba5ba1d4690fb39b1efe630944 (diff) | |
download | cpython-df93f5d4bf9d70036d485666d4dd4f009d37f8b9.zip cpython-df93f5d4bf9d70036d485666d4dd4f009d37f8b9.tar.gz cpython-df93f5d4bf9d70036d485666d4dd4f009d37f8b9.tar.bz2 |
gh-119070: Fix py.exe handling of /usr/bin/env commands missing extension (GH-119426)
Diffstat (limited to 'Misc/NEWS.d/next/Windows')
-rw-r--r-- | Misc/NEWS.d/next/Windows/2024-05-22-19-43-29.gh-issue-119070._enton.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Windows/2024-05-22-19-43-29.gh-issue-119070._enton.rst b/Misc/NEWS.d/next/Windows/2024-05-22-19-43-29.gh-issue-119070._enton.rst new file mode 100644 index 0000000..aab26f5 --- /dev/null +++ b/Misc/NEWS.d/next/Windows/2024-05-22-19-43-29.gh-issue-119070._enton.rst @@ -0,0 +1,3 @@ +Fixes ``py.exe`` handling of shebangs like ``/usr/bin/env python3.12``, +which were previously interpreted as ``python3.exe`` instead of +``python3.12.exe``. |