[Python-checkins] r83399 - python/branches/py3k/Tools/msi/msi.py

georg.brandl python-checkins at python.org
Sun Aug 1 11:17:53 CEST 2010


Author: georg.brandl
Date: Sun Aug  1 11:17:53 2010
New Revision: 83399

Log:
Package some new files that are needed for running the test suite from the MSI package.

Modified:
   python/branches/py3k/Tools/msi/msi.py

Modified: python/branches/py3k/Tools/msi/msi.py
==============================================================================
--- python/branches/py3k/Tools/msi/msi.py	(original)
+++ python/branches/py3k/Tools/msi/msi.py	Sun Aug  1 11:17:53 2010
@@ -1009,6 +1009,8 @@
             lib.add_file("185test.db")
             lib.add_file("audiotest.au")
             lib.add_file("cfgparser.1")
+            lib.add_file("cfgparser.2")
+            lib.add_file("cfgparser.3")
             lib.add_file("sgml_input.html")
             lib.add_file("testtar.tar")
             lib.add_file("test_difflib_expect.html")
@@ -1019,6 +1021,8 @@
             lib.glob("*.pem")
             lib.glob("*.pck")
             lib.add_file("zipdir.zip")
+        if dir=='tests' and parent.physical=='distutils':
+            lib.add_file("Setup.sample")
         if dir=='decimaltestdata':
             lib.glob("*.decTest")
         if dir=='xmltestdata':


More information about the Python-checkins mailing list