[Python-checkins] gh-84910: Change 'IDLE Help' to 'IDLE Doc' (GH-95873)

miss-islington webhook-mailer at python.org
Thu Aug 11 17:17:21 EDT 2022


https://github.com/python/cpython/commit/2579c4954f93e25652974f7d1a16b3c8d763cc36
commit: 2579c4954f93e25652974f7d1a16b3c8d763cc36
branch: 3.10
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: miss-islington <31488909+miss-islington at users.noreply.github.com>
date: 2022-08-11T14:17:11-07:00
summary:

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 at udel.edu>

files:
M Lib/idlelib/mainmenu.py

diff --git a/Lib/idlelib/mainmenu.py b/Lib/idlelib/mainmenu.py
index 429c8660ce0d..91a32cebb513 100644
--- a/Lib/idlelib/mainmenu.py
+++ b/Lib/idlelib/mainmenu.py
@@ -111,7 +111,7 @@
  ('help', [
    ('_About IDLE', '<<about-idle>>'),
    None,
-   ('_IDLE Help', '<<help>>'),
+   ('_IDLE Doc', '<<help>>'),
    ('Python _Docs', '<<python-docs>>'),
    ]),
 ]



More information about the Python-checkins mailing list