mirror of
https://github.com/python/cpython.git
synced 2025-09-28 03:13:48 +00:00
Merge 3.2
This commit is contained in:
commit
73979c3149
2 changed files with 12 additions and 4 deletions
|
@ -303,9 +303,9 @@ class EditorWindow(object):
|
||||||
return "break"
|
return "break"
|
||||||
|
|
||||||
def home_callback(self, event):
|
def home_callback(self, event):
|
||||||
if (event.state & 12) != 0 and event.keysym == "Home":
|
if (event.state & 4) != 0 and event.keysym == "Home":
|
||||||
# state&1==shift, state&4==control, state&8==alt
|
# state&4==Control. If <Control-Home>, use the Tk binding.
|
||||||
return # <Modifier-Home>; fall back to class binding
|
return
|
||||||
|
|
||||||
if self.text.index("iomark") and \
|
if self.text.index("iomark") and \
|
||||||
self.text.compare("iomark", "<=", "insert lineend") and \
|
self.text.compare("iomark", "<=", "insert lineend") and \
|
||||||
|
|
|
@ -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*
|
*Release date: 27-Jun-09*
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue