[Python-checkins] r88236 - in python/branches/py3k: Lib/idlelib/config-keys.def Misc/NEWS
ned.deily
python-checkins at python.org
Sat Jan 29 20:10:26 CET 2011
Author: ned.deily
Date: Sat Jan 29 20:10:26 2011
New Revision: 88236
Log:
Issue 11052: Correct IDLE menu accelerators on Mac OS X for Save
commands. (with release manager approval for 3.2rc2)
Modified:
python/branches/py3k/Lib/idlelib/config-keys.def
python/branches/py3k/Misc/NEWS
Modified: python/branches/py3k/Lib/idlelib/config-keys.def
==============================================================================
--- python/branches/py3k/Lib/idlelib/config-keys.def (original)
+++ python/branches/py3k/Lib/idlelib/config-keys.def Sat Jan 29 20:10:26 2011
@@ -176,7 +176,7 @@
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-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>
Modified: python/branches/py3k/Misc/NEWS
==============================================================================
--- python/branches/py3k/Misc/NEWS (original)
+++ python/branches/py3k/Misc/NEWS Sat Jan 29 20:10:26 2011
@@ -16,6 +16,9 @@
Library
-------
+- Issue #11052: Correct IDLE menu accelerators on Mac OS X for Save
+ commands.
+
- Issue #11053: Fix IDLE "Syntax Error" windows to behave as in 2.x,
preventing a confusing hung appearance on OS X with the windows
obscured.
More information about the Python-checkins
mailing list