[3.13] gh-129699: Add description to IDLE doc title (GH-129727) (#129864)

gh-129699: Add description to IDLE doc title (GH-129727)

Also extend the 'idlelib' section header. These additions affect both the displayed idle.html file and the contents.html file displayed by clicking the Complete table of contents link on the main docs.python.org page. (The module index entries are generated from the module name and synopsis within module files.)
---------

(cherry picked from commit 33a7094aa6)

Co-authored-by: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com>
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
This commit is contained in:
Miss Islington (bot) 2025-02-08 21:14:47 +01:00 committed by GitHub
parent 9497e9d77d
commit 3cf859056a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 68 additions and 66 deletions

View file

@ -29,7 +29,7 @@ class IdleDocTest(unittest.TestCase):
def test_4text(self):
text = self.window.frame.text
self.assertEqual(text.get('1.0', '1.end'), ' IDLE ')
self.assertEqual(text.get('1.0', '1.end'), ' IDLE — Python editor and shell ')
if __name__ == '__main__':