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:
parent
acd5f81149
commit
8a0b7756e2
|
@ -33,8 +33,8 @@ Menus
|
||||||
File menu
|
File menu
|
||||||
^^^^^^^^^
|
^^^^^^^^^
|
||||||
|
|
||||||
New window
|
New file
|
||||||
create a new editing window
|
create a new file editing window
|
||||||
|
|
||||||
Open...
|
Open...
|
||||||
open an existing file
|
open an existing file
|
||||||
|
|
|
@ -15,7 +15,7 @@ from idlelib import macosxSupport
|
||||||
menudefs = [
|
menudefs = [
|
||||||
# underscore prefixes character to underscore
|
# underscore prefixes character to underscore
|
||||||
('file', [
|
('file', [
|
||||||
('_New Window', '<<open-new-window>>'),
|
('_New File', '<<open-new-window>>'),
|
||||||
('_Open...', '<<open-window-from-file>>'),
|
('_Open...', '<<open-window-from-file>>'),
|
||||||
('Open _Module...', '<<open-module>>'),
|
('Open _Module...', '<<open-module>>'),
|
||||||
('Class _Browser', '<<open-class-browser>>'),
|
('Class _Browser', '<<open-class-browser>>'),
|
||||||
|
|
|
@ -5,7 +5,7 @@ separate window containing the menu is created.
|
||||||
|
|
||||||
File Menu:
|
File Menu:
|
||||||
|
|
||||||
New Window -- Create a new editing window
|
New File -- Create a new file editing window
|
||||||
Open... -- Open an existing file
|
Open... -- Open an existing file
|
||||||
Recent Files... -- Open a list of recent files
|
Recent Files... -- Open a list of recent files
|
||||||
Open Module... -- Open an existing module (searches sys.path)
|
Open Module... -- Open an existing module (searches sys.path)
|
||||||
|
|
|
@ -116,6 +116,9 @@ Library
|
||||||
IDLE
|
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.
|
- Remove dead imports of imp.
|
||||||
|
|
||||||
- Issue #18196: Avoid displaying spurious SystemExit tracebacks.
|
- Issue #18196: Avoid displaying spurious SystemExit tracebacks.
|
||||||
|
|
Loading…
Reference in New Issue