diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2013-07-01 04:52:18 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2013-07-01 04:52:18 (GMT) |
commit | ec4bdac8dd8c1a2fb6c211046dd0fca47a9896f2 (patch) | |
tree | 61dc4f4e65343db7476cfabfcc0ba355eb6c0e48 /Lib | |
parent | 7afadc856b2f0d960250a0e5924b6b69e6abc417 (diff) | |
parent | 8a0b7756e28f9374a8a316ca9a81613cc6b6e022 (diff) | |
download | cpython-ec4bdac8dd8c1a2fb6c211046dd0fca47a9896f2.zip cpython-ec4bdac8dd8c1a2fb6c211046dd0fca47a9896f2.tar.gz cpython-ec4bdac8dd8c1a2fb6c211046dd0fca47a9896f2.tar.bz2 |
(merge) Issue #7136: In the Idle File menu, "New Window" is renamed "New File".
Patch by Tal Einat, Roget Serwy, and Todd Rovito.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/idlelib/Bindings.py | 2 | ||||
-rw-r--r-- | Lib/idlelib/help.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Lib/idlelib/Bindings.py b/Lib/idlelib/Bindings.py index fe6e812..65c0317 100644 --- a/Lib/idlelib/Bindings.py +++ b/Lib/idlelib/Bindings.py @@ -15,7 +15,7 @@ from idlelib import macosxSupport menudefs = [ # underscore prefixes character to underscore ('file', [ - ('_New Window', '<<open-new-window>>'), + ('_New File', '<<open-new-window>>'), ('_Open...', '<<open-window-from-file>>'), ('Open _Module...', '<<open-module>>'), ('Class _Browser', '<<open-class-browser>>'), diff --git a/Lib/idlelib/help.txt b/Lib/idlelib/help.txt index b70c79f..6378a2e 100644 --- a/Lib/idlelib/help.txt +++ b/Lib/idlelib/help.txt @@ -21,7 +21,7 @@ containing the menu is created (for Unix and Windows only). File Menu (Shell and Editor): - New Window -- Create a new editing window + New File -- Create a new file editing window Open... -- Open an existing file Open Module... -- Open an existing module (searches sys.path) Recent Files... -- Open a list of recent files |