mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
Properly quote IDLE shortcut. Will backport to 2.4.
This commit is contained in:
parent
3673369951
commit
ac191dac9a
1 changed files with 2 additions and 2 deletions
|
@ -1080,9 +1080,9 @@ def add_registry(db):
|
|||
if have_tcl:
|
||||
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"),
|
||||
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"),
|
||||
tcltk.id, r'"[TARGETDIR]Tools\scripts\pydocgui.pyw"', None, None, "python_icon.exe", 0, None, "TARGETDIR"),
|
||||
]
|
||||
add_data(db, "Shortcut",
|
||||
tcltkshortcuts +
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue