summaryrefslogtreecommitdiffstats
path: root/Tools
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2014-03-02 19:29:18 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2014-03-02 19:29:18 (GMT)
commit0c3ea0942d75cfd2b484a3ae5d0a41f9fb1c8984 (patch)
tree2a7a9b6359c13b6abba1b109fbeb684d6c30e87a /Tools
parenta663069b5cf9d53777454e31404de51c7651a010 (diff)
downloadcpython-0c3ea0942d75cfd2b484a3ae5d0a41f9fb1c8984.zip
cpython-0c3ea0942d75cfd2b484a3ae5d0a41f9fb1c8984.tar.gz
cpython-0c3ea0942d75cfd2b484a3ae5d0a41f9fb1c8984.tar.bz2
Issue #14512: Launch pydoc -b instead of pydocgui.pyw on Windows.
Diffstat (limited to 'Tools')
-rw-r--r--Tools/msi/msi.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py
index 2ba72e4..e399dde 100644
--- a/Tools/msi/msi.py
+++ b/Tools/msi/msi.py
@@ -1324,8 +1324,6 @@ def add_registry(db):
tcltkshortcuts = [
("IDLE", "MenuDir", "IDLE|IDLE (Python GUI)", "pythonw.exe",
tcltk.id, r'"[TARGETDIR]Lib\idlelib\idle.pyw"', None, None, "python_icon.exe", 0, None, "TARGETDIR"),
- ("PyDoc", "MenuDir", "MODDOCS|Module Docs", "pythonw.exe",
- tcltk.id, r'"[TARGETDIR]Tools\scripts\pydocgui.pyw"', None, None, "python_icon.exe", 0, None, "TARGETDIR"),
]
add_data(db, "Shortcut",
tcltkshortcuts +
@@ -1340,6 +1338,8 @@ def add_registry(db):
("Manual", "MenuDir", "MANUAL|Python Manuals", "REGISTRY.doc",
"[#%s]" % docfile, None,
None, None, None, None, None, None),
+ ("PyDoc", "MenuDir", "MODDOCS|Module Docs", "python.exe",
+ default_feature.id, r'-m pydoc -b', None, None, "python_icon.exe", 0, None, "TARGETDIR"),
("Uninstall", "MenuDir", "UNINST|Uninstall Python", "REGISTRY",
SystemFolderName+"msiexec", "/x%s" % product_code,
None, None, None, None, None, None),