diff options
author | Steve Dower <steve.dower@python.org> | 2024-05-29 19:12:55 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-29 19:12:55 (GMT) |
commit | bc01c5d2252a31304a58c14d0e1aeffa4795092a (patch) | |
tree | 9c0605fdc154319c8e6d666565a0475ef1133ce2 /Misc | |
parent | a62681c4055f62484efe1edc2446fc4cce5c2bf0 (diff) | |
download | cpython-bc01c5d2252a31304a58c14d0e1aeffa4795092a.zip cpython-bc01c5d2252a31304a58c14d0e1aeffa4795092a.tar.gz cpython-bc01c5d2252a31304a58c14d0e1aeffa4795092a.tar.bz2 |
gh-119070: Fix py.exe handling of /usr/bin/env commands missing extension (GH-119426)
Diffstat (limited to 'Misc')
-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``. |