summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2022-08-11 16:50:49 -0400
committerGitHub <noreply@github.com>2022-08-11 16:50:49 -0400
commit05a0f37029f8ef917ed7ddbf7871856fc73aaca1 (patch)
treeb667b3959aa1d6b5b72aaa5dc893bd332d4c3463
parent9533b40ccec3f196982dfb139379fc736d339bf1 (diff)
downloadcpython-git-05a0f37029f8ef917ed7ddbf7871856fc73aaca1.tar.gz
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. .
-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 429c8660ce..91a32cebb5 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>>'),
]),
]