Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7d3755d

Browse files
committed
Add test_difflib_expect.html.
Fix open Verbs. Properly add "Edit with IDLE" to TclTk feature.
1 parent 785c65c commit 7d3755d

1 file changed

Lines changed: 6 additions & 5 deletions

File tree

Tools/msi/msi.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -880,6 +880,7 @@ def add_files(db):
880880
lib.add_file("test.xml")
881881
lib.add_file("test.xml.out")
882882
lib.add_file("testtar.tar")
883+
lib.add_file("test_difflib_expect.html")
883884
lib.glob("*.uue")
884885
lib.add_file("readme.txt", src="README")
885886
if dir=='decimaltestdata':
@@ -1012,7 +1013,7 @@ def add_registry(db):
10121013
# will cause pythonw.exe to be installed.
10131014
tcldata = []
10141015
if have_tcl:
1015-
tcltkdata = [(tcltk.id, "REGISTRY.tcl"),
1016+
tcldata = [(tcltk.id, "REGISTRY.tcl"),
10161017
(tcltk.id, "pythonw.exe")]
10171018
add_data(db, "FeatureComponents",
10181019
[(default_feature.id, "REGISTRY"),
@@ -1032,10 +1033,10 @@ def add_registry(db):
10321033
("pyo", "python.exe", "Python.CompiledFile", None, default_feature.id)])
10331034
# add_data(db, "MIME") XXX
10341035
add_data(db, "Verb",
1035-
[("py", "open", 1, None, r'-n -e "%1"'),
1036-
("pyw", "open", 1, None, r'-n -e "%1"'),
1037-
("pyc", "open", 1, None, r'-n -e "%1"'),
1038-
("pyo", "open", 1, None, r'-n -e "%1"')])
1036+
[("py", "open", 1, None, r'"%1"'),
1037+
("pyw", "open", 1, None, r'"%1"'),
1038+
("pyc", "open", 1, None, r'"%1"'),
1039+
("pyo", "open", 1, None, r'"%1"')])
10391040
add_data(db, "ProgId",
10401041
[("Python.File", None, None, "Python File", "python_icon.exe", 0),
10411042
("Python.NoConFile", None, None, "Python File (no console)", "python_icon.exe", 0),

0 commit comments

Comments
 (0)