summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Deily <nad@acm.org>2011-01-29 19:22:26 +0000
committerNed Deily <nad@acm.org>2011-01-29 19:22:26 +0000
commit88d390fd8d7efdfa32b7aa514cfcb3f274bf7350 (patch)
tree4f5b08a03397a007449e62251cf186f0185651fd
parent22a6fe286a98ae850d97d45304bcac047edd8bd1 (diff)
downloadcpython-88d390fd8d7efdfa32b7aa514cfcb3f274bf7350.tar.gz
Merged revisions 88236 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r88236 | ned.deily | 2011-01-29 11:10:26 -0800 (Sat, 29 Jan 2011) | 3 lines Issue 11052: Correct IDLE menu accelerators on Mac OS X for Save commands. (with release manager approval for 3.2rc2) ........
-rw-r--r--Lib/idlelib/config-keys.def4
-rw-r--r--Misc/NEWS3
2 files changed, 5 insertions, 2 deletions
diff --git a/Lib/idlelib/config-keys.def b/Lib/idlelib/config-keys.def
index fb0aaf4dc1..fdc35ba7b5 100644
--- a/Lib/idlelib/config-keys.def
+++ b/Lib/idlelib/config-keys.def
@@ -176,7 +176,7 @@ comment-region = <Control-Key-3>
redo = <Shift-Command-Key-Z>
close-window = <Command-Key-w>
restart-shell = <Control-Key-F6>
-save-window-as-file = <Command-Key-S>
+save-window-as-file = <Shift-Command-Key-S>
close-all-windows = <Command-Key-q>
view-restart = <Key-F6>
tabify-region = <Control-Key-5>
@@ -208,7 +208,7 @@ open-new-window = <Command-Key-n>
open-module = <Command-Key-m>
find-selection = <Shift-Command-Key-F3>
python-context-help = <Shift-Key-F1>
-save-copy-of-window-as-file = <Shift-Command-Key-s>
+save-copy-of-window-as-file = <Option-Command-Key-s>
open-window-from-file = <Command-Key-o>
python-docs = <Key-F1>
diff --git a/Misc/NEWS b/Misc/NEWS
index bfe7991ff0..5f0acc3c4a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -37,6 +37,9 @@ Core and Builtins
Library
-------
+- Issue #11052: Correct IDLE menu accelerators on Mac OS X for Save
+ commands.
+
- Issue #11020: Command-line pyclbr was broken because of missing 2-to-3
conversion.