[Python-checkins] cpython (3.4): Drop pydocgui.pyw from the distribution.

larry.hastings python-checkins at python.org
Wed Oct 8 11:56:44 CEST 2014


https://hg.python.org/cpython/rev/165aa40bfe2e
changeset:   92869:165aa40bfe2e
branch:      3.4
parent:      92520:0349f93c3162
user:        Martin v. Löwis <martin at v.loewis.de>
date:        Sun Sep 21 23:17:15 2014 +0200
summary:
  Drop pydocgui.pyw from the distribution.

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