Skip to content

Commit 3940e1f

Browse files
authored
gh-132930: Improve the names of IDLE and PyDoc shortcuts (GH-133091)
1 parent fbffd70 commit 3940e1f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

PC/layout/support/pymanager.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,14 +188,14 @@ def calculate_install_json(ns, *, for_embed=False, for_test=False):
188188

189189
if ns.include_idle:
190190
STD_START[0]["Items"].append({
191-
"Name": f"IDLE {VER_DOT}{DISPLAY_SUFFIX}",
191+
"Name": f"IDLE (Python {VER_DOT}{DISPLAY_SUFFIX})",
192192
"Target": f"%PREFIX%{TARGETW or TARGET}",
193193
"Arguments": r'"%PREFIX%Lib\idlelib\idle.pyw"',
194194
"Icon": r"%PREFIX%Lib\idlelib\Icons\idle.ico",
195195
"IconIndex": 0,
196196
})
197197
STD_START[0]["Items"].append({
198-
"Name": f"PyDoc {VER_DOT}{DISPLAY_SUFFIX}",
198+
"Name": f"PyDoc (Python {VER_DOT}{DISPLAY_SUFFIX})",
199199
"Target": f"%PREFIX%{TARGET}",
200200
"Arguments": "-m pydoc -b",
201201
"Icon": r"%PREFIX%Lib\idlelib\Icons\idle.ico",

0 commit comments

Comments
 (0)