diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-08-11 21:14:30 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-11 21:14:30 (GMT) |
commit | f8df88e07a731acb10ef52e5794f2ffe179d8799 (patch) | |
tree | c9d66d4afa322317b7108ed8a106b8bb459d6362 | |
parent | 3ea9ba647850442ade8aec2c84c7f20afd0fb7c4 (diff) | |
download | cpython-f8df88e07a731acb10ef52e5794f2ffe179d8799.zip cpython-f8df88e07a731acb10ef52e5794f2ffe179d8799.tar.gz cpython-f8df88e07a731acb10ef52e5794f2ffe179d8799.tar.bz2 |
gh-84910: Change 'IDLE Help' to 'IDLE Doc' (GH-95873)
'IDLE Help' was a plain text file. It was superceded years ago
by a copy of the much more complete html doc. .
(cherry picked from commit 05a0f37029f8ef917ed7ddbf7871856fc73aaca1)
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
-rw-r--r-- | Lib/idlelib/mainmenu.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/mainmenu.py b/Lib/idlelib/mainmenu.py index 429c866..91a32ce 100644 --- a/Lib/idlelib/mainmenu.py +++ b/Lib/idlelib/mainmenu.py @@ -111,7 +111,7 @@ menudefs = [ ('help', [ ('_About IDLE', '<<about-idle>>'), None, - ('_IDLE Help', '<<help>>'), + ('_IDLE Doc', '<<help>>'), ('Python _Docs', '<<python-docs>>'), ]), ] |