summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/help.py
Commit message (Collapse)AuthorAgeFilesLines
* bpo-33987: IDLE: Use ttk Frame on doc window and statusbar (GH-11433) (GH-22900)Miss Skeleton (bot)2020-10-221-3/+5
| | | | | | (cherry picked from commit facb522d44fceaf15de6bc95de1cd680c4621c2a) Co-authored-by: Cheryl Sabella <cheryl.sabella@gmail.com>
* Fix idlelib.help comments (GH-15669)Miss Islington (bot)2019-09-051-24/+25
| | | | | (cherry picked from commit 6cd9666ce93658ae91f07b396aa6932b362a61d3) Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
* bpo-38022: IDLE: upgrade help.html to sphinx 2.x HTML5 output (GH-15664)Miss Islington (bot)2019-09-031-2/+8
| | | | | | | | The HTML5 output from Sphinx 2.x adds '<p>' tags within list elements. Using a new prevtag attribute, ignore these instead of emitting unwanted '\n\n'. Also stop looking for 'first' classes on tags (no longer present) and fix the bug of double-spacing instead of single spacing after <pre> blocks. (cherry picked from commit 580bdb0ece681537eadb360f0c796123ead7a559) Co-authored-by: Tal Einat <taleinat+github@gmail.com>
* Fix typo found by Min ho Kim (GH-14879)Miss Islington (bot)2019-07-211-1/+1
| | | | | (cherry picked from commit 8e3a7380ecb310b50e48f47d1f26190cc9c45eb6) Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
* bpo-36766: Typos in docs and code comments (GH-13116)penguindustin2019-05-061-1/+1
|
* bpo-35088: Update idlelib.help.copy_string docstring (#10164)Terry Jan Reedy2018-10-281-17/+17
| | | We now use git and backporting instead of hg and forward merging.
* bpo-35087: Update idlelib help files for the current doc build. (GH-10162)Terry Jan Reedy2018-10-281-6/+13
| | | There is only one trivial change to idle.rst. Nearly all the changes to help.html are the elimination of chapter and section numbers on headers due to changes in the build system. help.py no longer requires header numbering.
* bpo-33855: Minimally test all IDLE modules. (GH-7689)Terry Jan Reedy2018-06-151-0/+3
| | | | Create a template for minimally testing a tkinter-using module by importing it and instantiating its class(es). Add a test file for all non-startup IDLE modules. Edit existing files and update coverage. This is part 1 of 3, covering the 21 autocomplete to help modules and touching 33 idlelib files.
* bpo-25514: Improve IDLE's connection refused message (#2177)terryjreedy2017-06-141-1/+1
| | | When IDLE fail to start because the socket connection fails, direct people to a new subsection of the IDLE doc listing various causes and remedies.
* Issue #27891: Consistently group and sort imports within idlelib modules.Terry Jan Reedy2016-08-311-0/+2
|
* Add version to title of IDLE help window.Terry Jan Reedy2016-08-261-1/+2
|\
| * Add version to title of IDLE help window.Terry Jan Reedy2016-08-261-1/+2
| |
* | Issue *24750: Switch all scrollbars in IDLE to ttk versions.Terry Jan Reedy2016-06-101-11/+11
| | | | | | | | Where needed, add minimal tests to cover changes.
* | Issue #24225: Within idlelib files, update idlelib module names.Terry Jan Reedy2016-05-281-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This follows the previous patch that changed idlelib file names. Class names that matched old module names are not changed. Change idlelib imports in turtledemo.__main__. Exception: config-extensions.def. Previously, extension section names, file names, and class names had to match. Changing section names would create cross-version conflicts in config-extensions.cfg (user customizations). Instead map old names to new file names at point of import in editor.EditorWindow.load_extension. Patch extensively tested with test_idle, idle_test.htest.py, a custom import-all test, running IDLE in a console to catch messages, and testing each menu item. Based on a patch by Al Sweigart.
* | Removed unused imports.Serhiy Storchaka2016-04-241-2/+2
|/
* WhitespaceTerry Jan Reedy2016-03-011-3/+3
|
* Document maintenance of idlelib/help.html in idlelib.Terry Jan Reedy2016-03-011-1/+24
|
* Issues #26310, #26311: Fix typos in the documentation and code commentsMartin Panter2016-02-101-1/+1
|
* Issue #25198: When using the Idle dov TOC menu, put the section title at theTerry Jan Reedy2015-09-271-22/+14
| | | | top of the window, unless it is too near the bottom to do do.
* Issue #25198: Idle doc viewer now uses user width and height setting.Terry Jan Reedy2015-09-251-1/+5
| | | | | The height is reduced by 3/4 to account for extra spacing between lines, relative to an Idle editor, and extra tall header lines.
* Issue #25198: In Idle doc viewer, fix indent of fixed-pitch <pre> textTerry Jan Reedy2015-09-241-8/+11
| | | | | by adding a new tag. Patch by Mark Roseman. Also give <pre> text a very light blueish-gray background similar to that used by Sphinx html.
* Idlelib.help: add 'b' prefix needed for bytes + bytes.Terry Jan Reedy2015-09-231-1/+1
|
* whitespaceTerry Jan Reedy2015-09-221-1/+1
|
* Issue #16893: Add idlelib.help.copy_strip() to copy-rstrip Doc/.../idle.html.Terry Jan Reedy2015-09-221-18/+35
| | | | Change destination to help.html. Adjust NEWS entries.
* Issue #16893: Replace help.txt with idle.html for Idle doc display.Terry Jan Reedy2015-09-201-0/+233
The new idlelib/idle.html is copied from Doc/build/html/idle.html. It looks better than help.txt and will better document Idle as released. The tkinter html viewer that works for this file was written by Rose Roseman. The new code is in idlelib/help.py, a new file for help menu classes. The now unused EditorWindow.HelpDialog class and helt.txt file are deprecated.