From cd99e79dc74c9d9dea83a5551d657c334b2cc6c9 Mon Sep 17 00:00:00 2001 From: Cheryl Sabella Date: Sat, 23 Sep 2017 16:46:01 -0400 Subject: bpo-31459: Rename IDLE's module browser from Class Browser to Module Browser. (#3704) The original module-level class and method browser became a module browser, with the addition of module-level functions, years ago. Nested classes and functions were added yesterday. For back- compatibility, the virtual event <>, which appears on the Keys tab of the Settings dialog, is not changed. Patch by Cheryl Sabella. --- Lib/idlelib/mainmenu.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/idlelib/mainmenu.py') diff --git a/Lib/idlelib/mainmenu.py b/Lib/idlelib/mainmenu.py index d1dcb83d93..143570d6b1 100644 --- a/Lib/idlelib/mainmenu.py +++ b/Lib/idlelib/mainmenu.py @@ -25,7 +25,7 @@ menudefs = [ ('_New File', '<>'), ('_Open...', '<>'), ('Open _Module...', '<>'), - ('Class _Browser', '<>'), + ('Module _Browser', '<>'), ('_Path Browser', '<>'), None, ('_Save', '<>'), -- cgit v1.2.1