]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Issue #7136: In the Idle File menu, "New Window" is renamed "New File".
authorTerry Jan Reedy <tjreedy@udel.edu>
Mon, 1 Jul 2013 04:42:52 +0000 (00:42 -0400)
committerTerry Jan Reedy <tjreedy@udel.edu>
Mon, 1 Jul 2013 04:42:52 +0000 (00:42 -0400)
Patch by Tal Einat, Roget Serwy, and Todd Rovito.

Doc/library/idle.rst
Lib/idlelib/Bindings.py
Lib/idlelib/help.txt
Misc/NEWS

index b40e470153616843fddd1409e0571a017ad36825..36d78b0991dd73b2ce476feb249e136a85c21ef1 100644 (file)
@@ -33,8 +33,8 @@ Menus
 File menu
 ^^^^^^^^^
 
-New window
-   create a new editing window
+New file
+   create a new file editing window
 
 Open...
    open an existing file
index fe6e812d2bffa3ccb415d0304dd7100e7ad2f10b..65c0317e60cc1bda4584077470028c371dcf67a4 100644 (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>>'),
index 919ac72acc5ef8a31f44b9ccb092d61664c230cb..ff786c53f36b49ad4251dc718c6359a12180a414 100644 (file)
@@ -5,7 +5,7 @@ separate window containing the menu is created.
 
 File Menu:
 
-       New Window       -- Create a new editing window
+       New File         -- Create a new file editing window
        Open...          -- Open an existing file
        Recent Files...  -- Open a list of recent files
        Open Module...   -- Open an existing module (searches sys.path)
index 17d8f601a256907bb710a79d32f5d5270774fe9e..e6539257596dcd46e8c10210b63f431c7f36ed61 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -116,6 +116,9 @@ Library
 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.