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

terryjreedy webhook-mailer at python.org
Thu Aug 11 16:50:59 EDT 2022


https://github.com/python/cpython/commit/05a0f37029f8ef917ed7ddbf7871856fc73aaca1
commit: 05a0f37029f8ef917ed7ddbf7871856fc73aaca1
branch: main
author: Terry Jan Reedy <tjreedy at udel.edu>
committer: terryjreedy <tjreedy at udel.edu>
date: 2022-08-11T16:50:49-04:00
summary:

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.  .

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