[Python-checkins] cpython: Drop pydocgui.pyw from the distribution (post-merge merge from 165aa40bfe2e)

steve.dower python-checkins at python.org
Wed Oct 8 17:37:34 CEST 2014


https://hg.python.org/cpython/rev/eb392fcc6177
changeset:   92878:eb392fcc6177
user:        Steve Dower <steve.dower at microsoft.com>
date:        Wed Oct 08 08:36:16 2014 -0700
summary:
  Drop pydocgui.pyw from the distribution (post-merge merge from 165aa40bfe2e)

files:
  Tools/msi/msi.py |  5 +----
  1 files changed, 1 insertions(+), 4 deletions(-)


diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py
--- a/Tools/msi/msi.py
+++ b/Tools/msi/msi.py
@@ -1158,7 +1158,7 @@
     for f in ['i18n', 'pynche', 'Scripts']:
         lib = PyDirectory(db, cab, tooldir, f, f, "%s|%s" % (tooldir.make_short(f), f))
         lib.glob("*.py")
-        lib.glob("*.pyw", exclude=['pydocgui.pyw'])
+        lib.glob("*.pyw")
         lib.remove_pyc()
         lib.glob("*.txt")
         if f == "pynche":
@@ -1170,9 +1170,6 @@
             lib.add_file("2to3.py", src="2to3")
             lib.add_file("pydoc3.py", src="pydoc3")
             lib.add_file("pyvenv.py", src="pyvenv")
-            if have_tcl:
-                lib.start_component("pydocgui.pyw", tcltk, keyfile="pydocgui.pyw")
-                lib.add_file("pydocgui.pyw")
     # Add documentation
     htmlfiles.set_current()
     lib = PyDirectory(db, cab, root, "Doc", "Doc", "DOC|Doc")

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list