mirror of
https://github.com/python/cpython.git
synced 2025-07-23 11:15:24 +00:00
gh-95359: Fix py.exe launcher handling of per-user py.ini and command names (GH-95399)
(cherry picked from commit 38bb2068fe
)
Co-authored-by: Steve Dower <steve.dower@python.org>
This commit is contained in:
parent
9626dea86f
commit
1368a1f724
3 changed files with 15 additions and 8 deletions
|
@ -70,7 +70,7 @@ TEST_PY_ENV = dict(
|
|||
|
||||
TEST_PY_COMMANDS = "\n".join([
|
||||
"[defaults]",
|
||||
*[f"{k.lower()}={v}" for k, v in TEST_PY_ENV.items()]
|
||||
*[f"{k[3:].lower()}={v}" for k, v in TEST_PY_ENV.items()]
|
||||
])
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue