[Python-checkins] r66710 - in python/trunk: Misc/NEWS Tools/msi/msi.py

martin.v.loewis python-checkins at python.org
Wed Oct 1 13:19:51 CEST 2008


Author: martin.v.loewis
Date: Wed Oct  1 13:19:50 2008
New Revision: 66710

Log:
Bug #3989: Package the 2to3 script (as 2to3.py) in the Windows
installer.

Modified:
   python/trunk/Misc/NEWS
   python/trunk/Tools/msi/msi.py

Modified: python/trunk/Misc/NEWS
==============================================================================
--- python/trunk/Misc/NEWS	(original)
+++ python/trunk/Misc/NEWS	Wed Oct  1 13:19:50 2008
@@ -43,6 +43,9 @@
 Build
 -----
 
+- Bug #3989: Package the 2to3 script (as 2to3.py) in the Windows
+  installer.
+
 - Bug #3887: Package x64 version of CRT for AMD64 Windows binaries.
 
 

Modified: python/trunk/Tools/msi/msi.py
==============================================================================
--- python/trunk/Tools/msi/msi.py	(original)
+++ python/trunk/Tools/msi/msi.py	Wed Oct  1 13:19:50 2008
@@ -1121,6 +1121,7 @@
         if os.path.exists(os.path.join(lib.absolute, "README")):
             lib.add_file("README.txt", src="README")
         if f == 'Scripts':
+            lib.add_file("2to3.py", src="2to3")
             if have_tcl:
                 lib.start_component("pydocgui.pyw", tcltk, keyfile="pydocgui.pyw")
                 lib.add_file("pydocgui.pyw")


More information about the Python-checkins mailing list