[Python-checkins] python/dist/src/Tools/msi msi.py,1.5,1.6

loewis at users.sourceforge.net loewis at users.sourceforge.net
Mon Sep 6 08:31:14 CEST 2004


Update of /cvsroot/python/python/dist/src/Tools/msi
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24599

Modified Files:
	msi.py 
Log Message:
Add test_difflib_expect.html.
Fix open Verbs.
Properly add "Edit with IDLE" to TclTk feature.

Index: msi.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Tools/msi/msi.py,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- msi.py	1 Sep 2004 14:51:06 -0000	1.5
+++ msi.py	6 Sep 2004 06:31:12 -0000	1.6
@@ -880,6 +880,7 @@
             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 @@
     # 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 @@
             ("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),



More information about the Python-checkins mailing list