(merge) Issue #7136: In the Idle File menu, "New Window" is renamed "New File".

Patch by Tal Einat, Roget Serwy, and Todd Rovito.
This commit is contained in:
Terry Jan Reedy 2013-07-01 00:52:18 -04:00
commit ec4bdac8dd
4 changed files with 7 additions and 4 deletions

View File

@ -39,8 +39,8 @@ 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

View File

@ -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>>'),

View File

@ -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

View File

@ -543,6 +543,9 @@ C-API
IDLE
----
- Issue #7136: In the Idle File menu, "New Window" is renamed "New File".
Patch by Tal Einat, Roget Serwy, and Todd Rovito.
- Remove dead imports of imp.
- Issue #18196: Avoid displaying spurious SystemExit tracebacks.