]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-84910: Change 'IDLE Help' to 'IDLE Doc' (#95873)
authorTerry Jan Reedy <tjreedy@udel.edu>
Thu, 11 Aug 2022 20:50:49 +0000 (16:50 -0400)
committerGitHub <noreply@github.com>
Thu, 11 Aug 2022 20:50:49 +0000 (16:50 -0400)
'IDLE Help' was a plain text file.  It was superceded years ago
by a copy of the much more complete html doc.  .

Lib/idlelib/mainmenu.py

index 429c8660ce0daa76c7e23c95c11ec9eb8ac80e1c..91a32cebb513f9140bf5e8df709e90b9e1c996e8 100644 (file)
@@ -111,7 +111,7 @@ menudefs = [
  ('help', [
    ('_About IDLE', '<<about-idle>>'),
    None,
-   ('_IDLE Help', '<<help>>'),
+   ('_IDLE Doc', '<<help>>'),
    ('Python _Docs', '<<python-docs>>'),
    ]),
 ]