diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2004-09-06 06:31:12 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2004-09-06 06:31:12 (GMT) |
commit | 7d3755d2c0d6d586308666b1dddf185f0169c320 (patch) | |
tree | 2b7ef7e0a3939c821ce3c207befc16085a1ba3c0 /Tools/msi | |
parent | 785c65ccd2a17922b08e528ab5cccf2f27ea12f9 (diff) | |
download | cpython-7d3755d2c0d6d586308666b1dddf185f0169c320.zip cpython-7d3755d2c0d6d586308666b1dddf185f0169c320.tar.gz cpython-7d3755d2c0d6d586308666b1dddf185f0169c320.tar.bz2 |
Add test_difflib_expect.html.
Fix open Verbs.
Properly add "Edit with IDLE" to TclTk feature.
Diffstat (limited to 'Tools/msi')
-rw-r--r-- | Tools/msi/msi.py | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py index da25222..754ffe6 100644 --- a/Tools/msi/msi.py +++ b/Tools/msi/msi.py @@ -880,6 +880,7 @@ def add_files(db): lib.add_file("test.xml") lib.add_file("test.xml.out") lib.add_file("testtar.tar") + lib.add_file("test_difflib_expect.html") lib.glob("*.uue") lib.add_file("readme.txt", src="README") if dir=='decimaltestdata': @@ -1012,7 +1013,7 @@ def add_registry(db): # will cause pythonw.exe to be installed. tcldata = [] if have_tcl: - tcltkdata = [(tcltk.id, "REGISTRY.tcl"), + tcldata = [(tcltk.id, "REGISTRY.tcl"), (tcltk.id, "pythonw.exe")] add_data(db, "FeatureComponents", [(default_feature.id, "REGISTRY"), @@ -1032,10 +1033,10 @@ def add_registry(db): ("pyo", "python.exe", "Python.CompiledFile", None, default_feature.id)]) # add_data(db, "MIME") XXX add_data(db, "Verb", - [("py", "open", 1, None, r'-n -e "%1"'), - ("pyw", "open", 1, None, r'-n -e "%1"'), - ("pyc", "open", 1, None, r'-n -e "%1"'), - ("pyo", "open", 1, None, r'-n -e "%1"')]) + [("py", "open", 1, None, r'"%1"'), + ("pyw", "open", 1, None, r'"%1"'), + ("pyc", "open", 1, None, r'"%1"'), + ("pyo", "open", 1, None, r'"%1"')]) add_data(db, "ProgId", [("Python.File", None, None, "Python File", "python_icon.exe", 0), ("Python.NoConFile", None, None, "Python File (no console)", "python_icon.exe", 0), |