[Python-checkins] cpython (merge 3.2 -> 3.2): Merge 3.2 heads

kurt.kaiser python-checkins at python.org
Fri Mar 25 05:33:16 CET 2011


http://hg.python.org/cpython/rev/6c421c24c183
changeset:   68915:6c421c24c183
branch:      3.2
parent:      68899:b801d55a9979
parent:      68909:2e88ff463c72
user:        Kurt B. Kaiser <kbk at shore.net>
date:        Fri Mar 25 00:22:09 2011 -0400
summary:
  Merge 3.2 heads

files:
  Lib/idlelib/EditorWindow.py |   6 +++---
  Lib/idlelib/NEWS.txt        |  10 +++++++++-
  2 files changed, 12 insertions(+), 4 deletions(-)


diff --git a/Lib/idlelib/EditorWindow.py b/Lib/idlelib/EditorWindow.py
--- a/Lib/idlelib/EditorWindow.py
+++ b/Lib/idlelib/EditorWindow.py
@@ -303,9 +303,9 @@
         return "break"
 
     def home_callback(self, event):
-        if (event.state & 12) != 0 and event.keysym == "Home":
-            # state&1==shift, state&4==control, state&8==alt
-            return # <Modifier-Home>; fall back to class binding
+        if (event.state & 4) != 0 and event.keysym == "Home":
+            # state&4==Control. If <Control-Home>, use the Tk binding.
+            return
 
         if self.text.index("iomark") and \
            self.text.compare("iomark", "<=", "insert lineend") and \
diff --git a/Lib/idlelib/NEWS.txt b/Lib/idlelib/NEWS.txt
--- a/Lib/idlelib/NEWS.txt
+++ b/Lib/idlelib/NEWS.txt
@@ -1,4 +1,12 @@
-What's New in IDLE 3.1?
+What's New in IDLE 3.1.4?
+=========================
+
+*Release date: XX-XXX-XX*
+
+- <Home> toggle non-functional when NumLock set on Windows.  Issue3851.
+
+
+What's New in IDLE 3.1b1?
 =========================
 
 *Release date: 27-Jun-09*

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


More information about the Python-checkins mailing list