diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2022-08-11 20:50:49 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-11 20:50:49 (GMT) |
commit | 05a0f37029f8ef917ed7ddbf7871856fc73aaca1 (patch) | |
tree | b667b3959aa1d6b5b72aaa5dc893bd332d4c3463 /Lib/idlelib | |
parent | 9533b40ccec3f196982dfb139379fc736d339bf1 (diff) | |
download | cpython-05a0f37029f8ef917ed7ddbf7871856fc73aaca1.zip cpython-05a0f37029f8ef917ed7ddbf7871856fc73aaca1.tar.gz cpython-05a0f37029f8ef917ed7ddbf7871856fc73aaca1.tar.bz2 |
gh-84910: Change 'IDLE Help' to 'IDLE Doc' (#95873)
'IDLE Help' was a plain text file. It was superceded years ago
by a copy of the much more complete html doc. .
Diffstat (limited to 'Lib/idlelib')
-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>>'), ]), ] |