From: Martin v. Löwis Date: Wed, 1 Oct 2008 11:19:50 +0000 (+0000) Subject: Bug #3989: Package the 2to3 script (as 2to3.py) in the Windows X-Git-Tag: v2.6~2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d69c904a2f5322069528e8c31f998823787e75f5;p=thirdparty%2FPython%2Fcpython.git Bug #3989: Package the 2to3 script (as 2to3.py) in the Windows installer. --- diff --git a/Misc/NEWS b/Misc/NEWS index 6e6c58d0f21d..4993a9c7ff4a 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -43,6 +43,9 @@ Library 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. diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py index 976367090bb2..bb74d53284c1 100644 --- a/Tools/msi/msi.py +++ b/Tools/msi/msi.py @@ -1121,6 +1121,7 @@ def add_files(db): 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")