summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib
diff options
context:
space:
mode:
authorKurt B. Kaiser <kbk@shore.net>2011-03-23 00:05:18 (GMT)
committerKurt B. Kaiser <kbk@shore.net>2011-03-23 00:05:18 (GMT)
commit4364806a7cf978d70d8bfabac439036d244a73e3 (patch)
tree3af35a28065cc51e2ec038a7428792ac331b1a8b /Lib/idlelib
parentc46759ad0b3419bb67b33f0358af5ae50dc0c5fe (diff)
parent01ac8cdc132806f57815822854ba1589b4fc40c3 (diff)
downloadcpython-4364806a7cf978d70d8bfabac439036d244a73e3.zip
cpython-4364806a7cf978d70d8bfabac439036d244a73e3.tar.gz
cpython-4364806a7cf978d70d8bfabac439036d244a73e3.tar.bz2
Merge from 3.2
Diffstat (limited to 'Lib/idlelib')
-rw-r--r--Lib/idlelib/EditorWindow.py6
-rw-r--r--Lib/idlelib/NEWS.txt10
2 files changed, 12 insertions, 4 deletions
diff --git a/Lib/idlelib/EditorWindow.py b/Lib/idlelib/EditorWindow.py
index a37cb1d..aeec9bf 100644
--- a/Lib/idlelib/EditorWindow.py
+++ b/Lib/idlelib/EditorWindow.py
@@ -303,9 +303,9 @@ class EditorWindow(object):
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
index 037b02a..a825dc5 100644
--- 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*