[Python-checkins] cpython (2.7): Issue #27854: Include idlelib/help.html in 2.7 Windows installer.

terry.reedy python-checkins at python.org
Fri Nov 11 12:03:25 EST 2016


https://hg.python.org/cpython/rev/2776720f549c
changeset:   105062:2776720f549c
branch:      2.7
parent:      105055:237ef36fb1bb
user:        Terry Jan Reedy <tjreedy at udel.edu>
date:        Fri Nov 11 12:03:09 2016 -0500
summary:
  Issue #27854: Include idlelib/help.html in 2.7 Windows installer.
Without this file, clicking Help => IDLE Help did nothing.

files:
  Lib/idlelib/NEWS.txt |  6 ++++++
  Misc/NEWS            |  6 ++++++
  Tools/msi/msi.py     |  1 +
  3 files changed, 13 insertions(+), 0 deletions(-)


diff --git a/Lib/idlelib/NEWS.txt b/Lib/idlelib/NEWS.txt
--- a/Lib/idlelib/NEWS.txt
+++ b/Lib/idlelib/NEWS.txt
@@ -2,6 +2,12 @@
 ==========================
 *Release date: 2017-01-01?*
 
+- Issue #27854: Make Help => IDLE Help work again on Windows.
+  Include idlelib/help.html in 2.7 Windows installer.
+
+- Issue #25507: Add back import needed for 2.x encoding warning box.
+  Add pointer to 'Encoding declaration' in Language Reference.
+
 - Issue #15308: Add 'interrupt execution' (^C) to Shell menu.
   Patch by Roger Serwy, updated by Bayard Randel.
 
diff --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -220,6 +220,12 @@
 IDLE
 ----
 
+- Issue #27854: Make Help => IDLE Help work again on Windows.
+  Include idlelib/help.html in 2.7 Windows installer.
+
+- Issue #25507: Add back import needed for 2.x encoding warning box.
+  Add pointer to 'Encoding declaration' in Language Reference.
+
 - Issue #15308: Add 'interrupt execution' (^C) to Shell menu.
   Patch by Roger Serwy, updated by Bayard Randel.
 
diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py
--- a/Tools/msi/msi.py
+++ b/Tools/msi/msi.py
@@ -1076,6 +1076,7 @@
         if dir=='idlelib':
             lib.glob("*.def")
             lib.add_file("idle.bat")
+            lib.add_file("help.html")
         if dir=="Icons":
             lib.glob("*.gif")
             lib.glob("*.ico")

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


More information about the Python-checkins mailing list