summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2022-08-11 21:17:11 (GMT)
committerGitHub <noreply@github.com>2022-08-11 21:17:11 (GMT)
commit2579c4954f93e25652974f7d1a16b3c8d763cc36 (patch)
tree8b0f98efc98530ed799571300d43c1f980c35a0c
parent2a6b67f1c516d0e693abd0dc13c7c7799815fd18 (diff)
downloadcpython-2579c4954f93e25652974f7d1a16b3c8d763cc36.zip
cpython-2579c4954f93e25652974f7d1a16b3c8d763cc36.tar.gz
cpython-2579c4954f93e25652974f7d1a16b3c8d763cc36.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.py2
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>>'),
]),
]