diff options
author | Steve Dower <steve.dower@microsoft.com> | 2014-10-08 15:36:16 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2014-10-08 15:36:16 (GMT) |
commit | 3a43dbfabf73c8b74ccbb5255fdd3a2842a045e2 (patch) | |
tree | cf4e4bed9ce14a99dcb967abac70581000d2b0c6 /Tools | |
parent | f88c070825e509232225aa89a0333b273e848e2a (diff) | |
download | cpython-3a43dbfabf73c8b74ccbb5255fdd3a2842a045e2.zip cpython-3a43dbfabf73c8b74ccbb5255fdd3a2842a045e2.tar.gz cpython-3a43dbfabf73c8b74ccbb5255fdd3a2842a045e2.tar.bz2 |
Drop pydocgui.pyw from the distribution (post-merge merge from 165aa40bfe2e)
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/msi/msi.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py index 4178cb1..6616613 100644 --- a/Tools/msi/msi.py +++ b/Tools/msi/msi.py @@ -1158,7 +1158,7 @@ def add_files(db): 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 @@ def add_files(db): 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") |