cpython (merge 3.3 -> default): (merge) Issue #7136: In the Idle File menu, "New Window" is renamed "New File".
http://hg.python.org/cpython/rev/5bc3d8d22a93 changeset: 84405:5bc3d8d22a93 parent: 84401:dbdb6f7f9a1a parent: 84404:c39ddff53694 user: Terry Jan Reedy <tjreedy@udel.edu> date: Mon Jul 01 00:52:18 2013 -0400 summary: (merge) Issue #7136: In the Idle File menu, "New Window" is renamed "New File". Patch by Tal Einat, Roget Serwy, and Todd Rovito. files: Doc/library/idle.rst | 4 ++-- Lib/idlelib/Bindings.py | 2 +- Lib/idlelib/help.txt | 2 +- Misc/NEWS | 3 +++ 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/Doc/library/idle.rst b/Doc/library/idle.rst --- a/Doc/library/idle.rst +++ b/Doc/library/idle.rst @@ -39,8 +39,8 @@ 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 diff --git a/Lib/idlelib/Bindings.py b/Lib/idlelib/Bindings.py --- a/Lib/idlelib/Bindings.py +++ b/Lib/idlelib/Bindings.py @@ -15,7 +15,7 @@ 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 --- a/Lib/idlelib/help.txt +++ b/Lib/idlelib/help.txt @@ -21,7 +21,7 @@ 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 diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -543,6 +543,9 @@ 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. -- Repository URL: http://hg.python.org/cpython
participants (1)
-
terry.reedy