summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/mainmenu.py
diff options
context:
space:
mode:
authorCheryl Sabella <cheryl.sabella@gmail.com>2017-09-23 20:46:01 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2017-09-23 20:46:01 (GMT)
commitcd99e79dc74c9d9dea83a5551d657c334b2cc6c9 (patch)
tree23aa523413523630c5676cf732476dc7e8dd47fd /Lib/idlelib/mainmenu.py
parent99167f85b7373c8082b30a74211f009627bdedfa (diff)
downloadcpython-cd99e79dc74c9d9dea83a5551d657c334b2cc6c9.zip
cpython-cd99e79dc74c9d9dea83a5551d657c334b2cc6c9.tar.gz
cpython-cd99e79dc74c9d9dea83a5551d657c334b2cc6c9.tar.bz2
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 <<open-class-browser>>, which appears on the Keys tab of the Settings dialog, is not changed. Patch by Cheryl Sabella.
Diffstat (limited to 'Lib/idlelib/mainmenu.py')
-rw-r--r--Lib/idlelib/mainmenu.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/mainmenu.py b/Lib/idlelib/mainmenu.py
index d1dcb83..143570d 100644
--- a/Lib/idlelib/mainmenu.py
+++ b/Lib/idlelib/mainmenu.py
@@ -25,7 +25,7 @@ menudefs = [
('_New File', '<<open-new-window>>'),
('_Open...', '<<open-window-from-file>>'),
('Open _Module...', '<<open-module>>'),
- ('Class _Browser', '<<open-class-browser>>'),
+ ('Module _Browser', '<<open-class-browser>>'),
('_Path Browser', '<<open-path-browser>>'),
None,
('_Save', '<<save-window>>'),