https://github.com/python/cpython/commit/3940e1f8735133057fcfbaf22e796995cba5394b
commit: 3940e1f8735133057fcfbaf22e796995cba5394b
branch: main
author: Steve Dower <steve.do...@python.org>
committer: zooba <steve.do...@microsoft.com>
date: 2025-04-28T19:09:20+01:00
summary:

gh-132930: Improve the names of IDLE and PyDoc shortcuts (GH-133091)

files:
M PC/layout/support/pymanager.py

diff --git a/PC/layout/support/pymanager.py b/PC/layout/support/pymanager.py
index d7bdefadb242b7..b57e41bee51207 100644
--- a/PC/layout/support/pymanager.py
+++ b/PC/layout/support/pymanager.py
@@ -188,14 +188,14 @@ def calculate_install_json(ns, *, for_embed=False, 
for_test=False):
 
     if ns.include_idle:
         STD_START[0]["Items"].append({
-            "Name": f"IDLE {VER_DOT}{DISPLAY_SUFFIX}",
+            "Name": f"IDLE (Python {VER_DOT}{DISPLAY_SUFFIX})",
             "Target": f"%PREFIX%{TARGETW or TARGET}",
             "Arguments": r'"%PREFIX%Lib\idlelib\idle.pyw"',
             "Icon": r"%PREFIX%Lib\idlelib\Icons\idle.ico",
             "IconIndex": 0,
         })
         STD_START[0]["Items"].append({
-            "Name": f"PyDoc {VER_DOT}{DISPLAY_SUFFIX}",
+            "Name": f"PyDoc (Python {VER_DOT}{DISPLAY_SUFFIX})",
             "Target": f"%PREFIX%{TARGET}",
             "Arguments": "-m pydoc -b",
             "Icon": r"%PREFIX%Lib\idlelib\Icons\idle.ico",

_______________________________________________
Python-checkins mailing list -- python-checkins@python.org
To unsubscribe send an email to python-checkins-le...@python.org
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: arch...@mail-archive.com

Reply via email to